mirror of
https://github.com/home-assistant/core.git
synced 2025-07-08 22:07:10 +00:00
Add new climate feature flags to deconz (#109482)
This commit is contained in:
parent
28337fb941
commit
f15aa037ef
@ -100,6 +100,7 @@ class DeconzThermostat(DeconzDevice[Thermostat], ClimateEntity):
|
|||||||
TYPE = DOMAIN
|
TYPE = DOMAIN
|
||||||
|
|
||||||
_attr_temperature_unit = UnitOfTemperature.CELSIUS
|
_attr_temperature_unit = UnitOfTemperature.CELSIUS
|
||||||
|
_enable_turn_on_off_backwards_compatibility = False
|
||||||
|
|
||||||
def __init__(self, device: Thermostat, gateway: DeconzGateway) -> None:
|
def __init__(self, device: Thermostat, gateway: DeconzGateway) -> None:
|
||||||
"""Set up thermostat device."""
|
"""Set up thermostat device."""
|
||||||
@ -119,7 +120,11 @@ class DeconzThermostat(DeconzDevice[Thermostat], ClimateEntity):
|
|||||||
HVAC_MODE_TO_DECONZ[item]: item for item in self._attr_hvac_modes
|
HVAC_MODE_TO_DECONZ[item]: item for item in self._attr_hvac_modes
|
||||||
}
|
}
|
||||||
|
|
||||||
self._attr_supported_features = ClimateEntityFeature.TARGET_TEMPERATURE
|
self._attr_supported_features = (
|
||||||
|
ClimateEntityFeature.TARGET_TEMPERATURE
|
||||||
|
| ClimateEntityFeature.TURN_OFF
|
||||||
|
| ClimateEntityFeature.TURN_ON
|
||||||
|
)
|
||||||
|
|
||||||
if device.fan_mode:
|
if device.fan_mode:
|
||||||
self._attr_supported_features |= ClimateEntityFeature.FAN_MODE
|
self._attr_supported_features |= ClimateEntityFeature.FAN_MODE
|
||||||
|
Loading…
x
Reference in New Issue
Block a user