From 63594bac89f54fcba93c86ea3512dc36b0f79eee Mon Sep 17 00:00:00 2001 From: G Johansson Date: Tue, 30 Jan 2024 18:05:03 +0100 Subject: [PATCH] Add TURN_ON/OFF ClimateEntityFeature for IntesisHome (#109134) --- homeassistant/components/intesishome/climate.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/homeassistant/components/intesishome/climate.py b/homeassistant/components/intesishome/climate.py index 16cf62627f1..285be2c9cea 100644 --- a/homeassistant/components/intesishome/climate.py +++ b/homeassistant/components/intesishome/climate.py @@ -175,6 +175,10 @@ class IntesisAC(ClimateEntity): self._power_consumption_heat = None self._power_consumption_cool = None + self._attr_supported_features |= ( + ClimateEntityFeature.TURN_OFF | ClimateEntityFeature.TURN_ON + ) + # Setpoint support if controller.has_setpoint_control(ih_device_id): self._attr_supported_features |= ClimateEntityFeature.TARGET_TEMPERATURE