Hi All,
I’m using an UNO board and Wifi shield with Blynk as a home automation controller. Every few weeks the Arduino will loses connection with the Blynk Server and I have to reset the Arduino, which always connects and runs with no problems for a few more weeks. Is there any way to automate this? Something like this:
if (Blynk.connected() == false) {
Blynk.begin(auth, ssid, pass, ip, 8442);
} else{
//do nothing
}
Or
if (Blynk.connected() == false) {
asm volatile (“jmp 0”);
} else{
//do nothing
}