Search found 1 match
- Mon Jul 19, 2021 4:07 am
- Forum: General Discussion
- Topic: ESP32 needs to be re-programmed after internet is disconnected
- Replies: 3
- Views: 3895
Re: ESP32 needs to be re-programmed after internet is disconnected
Hi, Please ad the following function to check the Blynk status void checkBlynkStatus() { // called every 3 seconds by SimpleTimer bool isconnected = Blynk.connected(); if (isconnected == false) { wifiFlag = 1; digitalWrite(wifiLed, HIGH); //Turn off WiFi LED } if (isconnected == true) { wifiFlag = 0...