Compare commits

...

1 Commits

Author SHA1 Message Date
4a4b8ee788 esp.reset on wifi disconnect 2020-07-24 23:28:04 +02:00

View File

@@ -61,6 +61,9 @@ void setupProduction() {
void loopProduction() { void loopProduction() {
if (WiFi.status() != WL_CONNECTED) {
ESP.reset();
}
loopApplication(); loopApplication();
} }