diff --git a/custom_components/kumo/climate.py b/custom_components/kumo/climate.py index 36f6bed..cc18434 100644 --- a/custom_components/kumo/climate.py +++ b/custom_components/kumo/climate.py @@ -155,7 +155,9 @@ def __init__(self, coordinator: KumoDataUpdateCoordinator): self._swing_modes = self._pykumo.get_vane_directions() self._hvac_modes = [HVACMode.OFF, HVACMode.COOL] self._supported_features = ( - ClimateEntityFeature.TARGET_TEMPERATURE | ClimateEntityFeature.FAN_MODE + ClimateEntityFeature.TARGET_TEMPERATURE | + ClimateEntityFeature.FAN_MODE | + ClimateEntityFeature.TURN_OFF ) if self._pykumo.has_dry_mode(): self._hvac_modes.append(HVACMode.DRY)