edit script to react on command

This commit is contained in:
2020-03-13 17:02:53 +01:00
parent e14a0edb3c
commit b5d48be64a
4 changed files with 36 additions and 0 deletions

View File

@@ -184,6 +184,15 @@ void loadDataFromWeb() {
int sleepTime = jsonContent["device"]["sleepTime"];
String hostName = jsonContent["device"]["hostname"];
String requestState = jsonContent["state"];
String command = jsonContent["command"];
if (command == "reset"){
ESP.reset();
} else if (command == "config") {
CleanEeprom();
EEPROM.commit();
ESP.restart();
}
if (requestState != "succes") {
unsuccessfulRounds++;