Stefano Ledda

Results 82 comments of Stefano Ledda

Hello Michael, thank you for using the library. The issue that you are pointing out is dued to a "not marked as read the last received message". In other word,...

You can try that code. If you send a message with the word `restart`, the bot will reboot (you can check it in the serial console). Any other word will...

Hello Lissandro, it's a very weird behavior! The two parameters are declared as String, so they must accept a string as input. BTW I try to modify the inline keyboard...

Hi Lissando, finally I solved the riddle. One of the major changes in the v3.0.0 is the use of "C style string" only inside of the library: most of the...

Hola Marton, _muy bien hecho hombre!_ All you said makes me thinking about a full library refactory: all strings, memory management (even the ArduinoJson objects) needs to be revised. I'll...

Hola Marton, que tal? Finally I added your memory improvements suggestions in the version 2.1.1 (for now only in the master branch, but soon I'll publish the release). Again, thank...

Hello hamster66, the problem you faced is dued to the WiFiClientSecure class. With a very quick googling you can found [this](https://github.com/esp8266/Arduino/issues/1420) and [this](https://github.com/esp8266/Arduino/pull/3257). So a solution to your problem could...

Mmmm I see. Have you tired to check the connection BEFORE calling the getNewMessage() method? Something like this: ``` if (WiFi.status() != WL_CONNECTED) { // not connected, do connection stuff...

Hi garudaonekh, sadly you can not have the same token on multiple online bot, it is a Telegram rule: the error that you pointed out says exactly what I have...

mmm it's a bit complicated. _just go thru Telegram API, its doc say Webhook can accept 100 concurrent connections. I don't know if this could help._ This mean that the...