Fix RC35 day and night mode MQTT mapping - https://github.com/proddy/EMS-ESP/issues/208

This commit is contained in:
proddy
2019-10-16 14:50:20 +02:00
parent 07f821590b
commit 372e5b6f1c
2 changed files with 3 additions and 3 deletions

View File

@@ -723,9 +723,9 @@ void publishValues(bool force) {
} else if (thermoMode == 2) { } else if (thermoMode == 2) {
dataThermostat[THERMOSTAT_MODE] = "auto"; dataThermostat[THERMOSTAT_MODE] = "auto";
} else if (thermoMode == 3) { } else if (thermoMode == 3) {
dataThermostat[THERMOSTAT_MODE] = "night"; dataThermostat[THERMOSTAT_MODE] = "off"; // for night
} else if (thermoMode == 4) { } else if (thermoMode == 4) {
dataThermostat[THERMOSTAT_MODE] = "day"; dataThermostat[THERMOSTAT_MODE] = "heat"; // for day
} }
} }
} }

View File

@@ -1 +1 @@
#define APP_VERSION "1.9.2b9" #define APP_VERSION "1.9.2b10"