Hello
With my new Amazon echo-dot sketch I am getting a “heartbeat timeout” and my Blynk app. stop responding but my echo-dot continue to work normally.
Can anyone explain ?
thanks
http://docs.blynk.cc/#troubleshooting
https://community.blynk.cc/search?q=Heartbeat%20timeout%20order%3Alatest
@Gunner
I found my problem.
Each time the router was restarted I got “heartbeat timeout” and Blynk app. stops.
/*----------------------------------Loop-----------------------------------------*/
void loop()
{
// if (Blynk.connected()) {
Blynk.run();
// }
ArduinoOTA.handle();
timer.run(); // Initiates BlynkTimer
fauxmo.handle();
}
/*-------------------------------------------------------------------------------*/
when I removed the if statement every thing went normal and Blynk reconnect again.
THANKS
2 Likes