Issue #99 : over climate VTherm a regulated by the device itself and should not goes into security

This commit is contained in:
Jean-Marc Collin
2023-08-30 09:06:26 +02:00
parent b38fbd9d78
commit af51ef62e0
2 changed files with 3 additions and 2 deletions

View File

@@ -2106,7 +2106,8 @@ class VersatileThermostat(ClimateEntity, RestoreEntity):
switch_cond,
)
shouldClimateBeInSecurity = temp_cond and climate_cond
# Issue 99 - a climate is regulated by the device itself and not by VTherm. So a VTherm should never be in security !
shouldClimateBeInSecurity = False # temp_cond and climate_cond
shouldSwitchBeInSecurity = temp_cond and switch_cond
shouldBeInSecurity = shouldClimateBeInSecurity or shouldSwitchBeInSecurity

View File

@@ -1,2 +1,2 @@
homeassistant
homeassistant==2023.8.3
ffmpeg