little edit shelly

This commit is contained in:
Kotrba Filip 2020-03-03 20:03:06 +01:00
parent 029d75cd33
commit f3ec7476b2
1 changed files with 6 additions and 9 deletions

View File

@ -78,7 +78,6 @@ void loop() {
ESP.restart();
}
if (buttonActive) {
delay (500);
jsonContent = {};
jsonContent["token"] = apiToken;
requestJson = "";
@ -88,8 +87,9 @@ void loop() {
EEPROM.commit();
sendDataToWeb();
buttonActive = false;
} else {
loadDataFromWeb();
}
loadDataFromWeb();
} else {
server.handleClient();
}
@ -117,6 +117,7 @@ bool wifiVerify(int t) {
}
void loadDataFromWeb() {
delay(500);
jsonContent = {};
jsonContent["token"] = apiToken;
requestJson = "";
@ -148,16 +149,12 @@ void loadDataFromWeb() {
WiFi.hostname(hostName);
Serial.println("state: " + (String)state + ", realState: " + (String)realState);
if (state != realState && !buttonActive) {
if (state == 1 && realState == 0) {
Serial.println("ON state: " + (String)state + ", realState: " + (String)realState);
realState = 1;
} else {
Serial.println("OFF");
realState = 0;
}
realState = state;
digitalWrite(RELAY, realState);
EEPROM.write(0, realState);
EEPROM.commit();
} else {
state = realState;
}
}