From 9e7ba94e45b37e8620fa5306220d9fbae0a7f753 Mon Sep 17 00:00:00 2001 From: per1234 Date: Sat, 3 Feb 2018 05:50:21 -0800 Subject: [PATCH] Fix error in FlashledBot example sketch A stray character caused compilation of the sketch to fail. --- examples/101/FlashledBot/FlashledBot.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/101/FlashledBot/FlashledBot.ino b/examples/101/FlashledBot/FlashledBot.ino index 29dad39..b5aa01f 100644 --- a/examples/101/FlashledBot/FlashledBot.ino +++ b/examples/101/FlashledBot/FlashledBot.ino @@ -23,7 +23,7 @@ const int ledPin = 13; #define BOTtoken "XXXXXXXXX:XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX" // your Bot Token (Get from Botfather) WiFiSSLClient client; -UniversalTelegramBot bot(BOTtoken, client);s +UniversalTelegramBot bot(BOTtoken, client); int Bot_mtbs = 1000; //mean time between scan messages long Bot_lasttime; //last time messages' scan has been done