CTBot
CTBot copied to clipboard
A simple (and easy to use) Arduino Telegram BOT Library for ESP8266/ESP32
`#include "CTBot.h" CTBot myBot; String ssid = "idih"; String pass = "ngapo nanyo aku."; String token = "1880656074:AAHurevCe1Kw9UMeokrvs-2eDeAVdd_tMGY"; const int id = 780422297; String foto = "https://www.arduino.cc/en/uploads/Trademark/ArduinoCommunityLogo.png"; void setup() {...
From the date 21-06-2021 16:00 is necessary add "https://api.telegram.org"; const String URL = (String)"GET /bot" + m_token + (String)"/" + command + parameters; to const String URL = (String)"GET https://api.telegram.org/bot"...
Good evening, thank you for your library, i used 1 year ago and it worked fine. i did not upgraded any Library or Arduino IDE. This is my situation: Arduino...
Hi, I have a P3 RGB 64x32 l led matrix and the telegram library as soon as I embed a certain part of the telegram library flickers the matrix. Why...
Hello, I wish to know if there is any possibility of sending images and deleting messages form a chat. My intentions are the following: - Capture images with a cam...
Thank you for all the good work on this library. Just wanted to share a wrapper i wrote, it allows to have the CTBot playing in its own thread without...
Hi everyone, I just need to send messages to telegram without echo ``` #define CTBOT_DEBUG_MODE CTBOT_DEBUG_ALL #include "CTBot.h" CTBot myBot; String ssid = "ssid"; String pass = "pass"; String token...
Hello I have been thinking about adding these lines in the CTBotWifiSetup.cpp file to report the IP change in the CTBotWifiSetup::setIP function. Following the same rules as in the line...
is it possible to send messages silently?
How to check for new messages without deleting them? Something like myBot.checkNewMessage(msg) If several clients are connected to the bot. The client to whom the message is intended should delete...