mirror of
https://github.com/Lomanic/presence-button
synced 2024-11-24 14:27:30 +00:00
Use safer ESP.restart() instead of ESP.reset() to reboot the ESP
https://github.com/esp8266/Arduino/issues/1722#issuecomment-192624783
This commit is contained in:
parent
f13018e93b
commit
f5b347b3b1
@ -88,7 +88,7 @@ void handleAdmin() {
|
|||||||
httpServer.sendHeader("Location", httpServer.uri(), true);
|
httpServer.sendHeader("Location", httpServer.uri(), true);
|
||||||
httpServer.send(302, "text/plain", "");
|
httpServer.send(302, "text/plain", "");
|
||||||
delay(500);
|
delay(500);
|
||||||
ESP.reset();
|
ESP.restart();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -268,7 +268,7 @@ void setup() {
|
|||||||
Serial.println(F("failed to connect and hit timeout"));
|
Serial.println(F("failed to connect and hit timeout"));
|
||||||
delay(3000);
|
delay(3000);
|
||||||
//reset and try again, or maybe put it to deep sleep
|
//reset and try again, or maybe put it to deep sleep
|
||||||
ESP.reset();
|
ESP.restart();
|
||||||
delay(5000);
|
delay(5000);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -343,7 +343,7 @@ void loop() {
|
|||||||
wifiManager.resetSettings();
|
wifiManager.resetSettings();
|
||||||
SPIFFS.format();
|
SPIFFS.format();
|
||||||
delay(500);
|
delay(500);
|
||||||
ESP.reset();
|
ESP.restart();
|
||||||
}
|
}
|
||||||
unsigned long currentMillis = millis();
|
unsigned long currentMillis = millis();
|
||||||
if (currentMillis - previousMillis > notifyInterval) {
|
if (currentMillis - previousMillis > notifyInterval) {
|
||||||
|
Loading…
Reference in New Issue
Block a user