Jan 24, 2022 - question about bots

main
jameszah 2022-01-24 15:20:03 -07:00 zatwierdzone przez GitHub
rodzic 87c9ffa764
commit 1b64a1f846
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 11 dodań i 2 usunięć

Wyświetl plik

@ -3,8 +3,17 @@ Record avi video on ESP32-CAM and send to Telegram on event or request
Jan 17, 2022
ESP32-CAM-Video-Telegram_8.8x.ino works with Arduino 1.8.13 and esp32-arduino 1.60
ESP32-CAM-Video-Telegram_8.9x.ino works with Arduino 1.8.19 and esp32-arduino 2.0.2
ESP32-CAM-Video-Telegram_8.8x.ino --- Arduino 1.8.13 / esp32-arduino 1.6.0
ESP32-CAM-Video-Telegram_8.9x.ino --- Arduino 1.8.19 / esp32-arduino 2.0.2
Jan 24, 2022
In response to an email query:
A telegram bot is like a person receiving and replying to messages. The bot is a simple receive/reply system. When it boots it sends one message to the hard-coded owner of the bot (10 digit number in chat_id), and thereafter it responds to anyone in the telegram universe that sends a message. Obviously a little esp32 cannot respond to millions of messages, but anyone can send it a message. This line below grabs the identity of the person sending a message, and uses that identity to send a message back. You could delete this line, and it would always send messages back your hard-coded identiy. Or check if the caller is you or one of your friends, and then reply to them, or ignore them.
https://github.com/jameszah/ESP32-CAM-Video-Telegram/blob/87c9ffa764ef58648e143ca038c49ba51b8964bf/ESP32-CAM-Video-Telegram_8.9x.ino#L302
<h2> Description </h2>