[climate] Correct evohome hvac_action (#25407)

* inital commit

* take account of rounding up of curr_temp
pull/25452/head
David Bonnes 2019-07-23 06:14:42 +01:00 committed by Paulus Schoutsen
parent 9fc4b878e2
commit e2e7d39527
1 changed files with 3 additions and 3 deletions

View File

@ -193,9 +193,9 @@ class EvoZone(EvoClimateDevice):
return CURRENT_HVAC_OFF
if self.target_temperature <= self.min_temp:
return CURRENT_HVAC_OFF
if self.target_temperature <= self.current_temperature:
return CURRENT_HVAC_HEAT
return CURRENT_HVAC_IDLE
if self.target_temperature < self.current_temperature:
return CURRENT_HVAC_IDLE
return CURRENT_HVAC_HEAT
@property
def current_temperature(self) -> Optional[float]: