AsyncTelegram2
AsyncTelegram2 copied to clipboard
Powerful, flexible and secure Arduino Telegram BOT library. Hardware independent, it can be used with any MCU capable of handling an SSL connection.
I want to edit a message that I'm sending to a user via: Sent = myBot.sendTo(userid[0], msgtxt); BUT to edit the message I need the messageID of that message, how...
After Try command /html or Try command /markdown, in telegram see non stop text messages from static const char html_formatted[] PROGMEM = R"EOF or from static const char markdown_formatted[] PROGMEM...
Hello! First off, excellent work. My ESP8266 is running much quicker with your TG bot library. However, I'm quite concerned about the embedded TLS certificate ([tg_certificate.h](https://github.com/cotestatnt/AsyncTelegram2/blob/master/src/tg_certificate.h)) for api.telegram.org. I understand...
Hello, Tolentino! How can I synchronize a device with the Telegram server by command, and not with a specified time period in the myBot.setUpdateTime() function? This function works fine, no...
Hi Tolentino, I have been using your library for almost 3 years, thank you for sharing your work. I modified one of the examples so my battery powered ESP32CAMs turn...
Hi @cotestatnt, I am using Async2 V2.3.0, ArduinoJson V7.0.2 and echoBot_wifiNINA example on Ardunio Nano 33 IoT. It seems when sending a certain amount of text from TG to the...
replaykeyboard could not remove please help code has change from previous release bool AsyncTelegram2::removeReplyKeyboard(const TBMessage &msg, const char *message, bool selective) { // DynamicJsonDocument root(BUFFER_SMALL); StaticJsonDocument root; root["remove_keyboard"] = true;...
editMessage() command doesn't seem to do anything. This is the test code I used: ``` #include // Timezone definition #include #define MYTZ "CET-1CEST,M3.5.0,M10.5.0/3" #include #if USE_CLIENTSSL #include #include #include "tg_certificate.h"...
it looks that `telegramClient->find` get blocking on ESP32, in my OTA update, it always cannot read getFile command properly, and result an error. ## Type of change: make block sendCommand...
I will be happy if you can an example to update FW to esp32 OTA via telegram bot Thank you!