From 07ac7beb7d13a892b402b1aa154c258ddeec400b Mon Sep 17 00:00:00 2001 From: Jean-Marc Collin Date: Sat, 23 Mar 2024 07:21:18 +0100 Subject: [PATCH] [#419] - Turnon don't work anymore (#422) Co-authored-by: Jean-Marc Collin --- custom_components/versatile_thermostat/base_thermostat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/versatile_thermostat/base_thermostat.py b/custom_components/versatile_thermostat/base_thermostat.py index 2ecf905..a0f6020 100644 --- a/custom_components/versatile_thermostat/base_thermostat.py +++ b/custom_components/versatile_thermostat/base_thermostat.py @@ -2711,4 +2711,4 @@ class BaseThermostat(ClimateEntity, RestoreEntity): if self._ac_mode: await self.async_set_hvac_mode(HVACMode.COOL) else: - await self.async_set_hvac_mode(HVACMode.HEATING) + await self.async_set_hvac_mode(HVACMode.HEAT)