From e8fc4cc627593473cdc2865854af02e6963db292 Mon Sep 17 00:00:00 2001 From: jingsno <20334786+jingsno@users.noreply.github.com> Date: Sat, 19 Feb 2022 19:21:10 +0100 Subject: [PATCH] Fix Mill Gen1 Climate Control (#66899) Fixes Mill Gen1 Climate Control, so it correctly returns the current status of the heating element. --- homeassistant/components/mill/climate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/mill/climate.py b/homeassistant/components/mill/climate.py index 897afc96665..4a06e597c36 100644 --- a/homeassistant/components/mill/climate.py +++ b/homeassistant/components/mill/climate.py @@ -184,7 +184,7 @@ class MillHeater(CoordinatorEntity, ClimateEntity): self._attr_target_temperature = heater.set_temp self._attr_current_temperature = heater.current_temp self._attr_fan_mode = FAN_ON if heater.fan_status == 1 else HVAC_MODE_OFF - if heater.is_gen1 or heater.is_heating == 1: + if heater.is_heating == 1: self._attr_hvac_action = CURRENT_HVAC_HEAT else: self._attr_hvac_action = CURRENT_HVAC_IDLE