From 967d231f388c76f33a13f2058ee5eb060b811c93 Mon Sep 17 00:00:00 2001 From: Charles Date: Thu, 11 Nov 2021 17:34:51 +0100 Subject: [PATCH] Display Current Temperature instead of Sensor Temperature --- tasmota/xdrv_39_thermostat.ino | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tasmota/xdrv_39_thermostat.ino b/tasmota/xdrv_39_thermostat.ino index 06feb20f8..f1258abee 100644 --- a/tasmota/xdrv_39_thermostat.ino +++ b/tasmota/xdrv_39_thermostat.ino @@ -2004,7 +2004,7 @@ void CmndEnableOutputSet(void) // xdrv_39_thermostat.ino #define D_THERMOSTAT "Thermostat" #define D_THERMOSTAT_SET_POINT "Set Point" -#define D_THERMOSTAT_SENSOR "Sensor" +#define D_THERMOSTAT_SENSOR "Current" #define D_THERMOSTAT_GRADIENT "Gradient" #define D_THERMOSTAT_DUTY_CYCLE "Duty Cycle" // -------------------------------------------------- @@ -2045,7 +2045,6 @@ void ThermostatShow(uint8_t ctr_output) WSContentSend_P(HTTP_THERMOSTAT_DUTY_CYCLE, ThermostatGetDutyCycle(ctr_output) ); } - #endif // USE_WEBSERVER }