Add TURN_ON/OFF ClimateEntityFeature for Vera (#108969)
parent
1acc9007d4
commit
822d5b3ce8
|
@ -48,7 +48,10 @@ class VeraThermostat(VeraDevice[veraApi.VeraThermostat], ClimateEntity):
|
||||||
_attr_hvac_modes = SUPPORT_HVAC
|
_attr_hvac_modes = SUPPORT_HVAC
|
||||||
_attr_fan_modes = FAN_OPERATION_LIST
|
_attr_fan_modes = FAN_OPERATION_LIST
|
||||||
_attr_supported_features = (
|
_attr_supported_features = (
|
||||||
ClimateEntityFeature.TARGET_TEMPERATURE | ClimateEntityFeature.FAN_MODE
|
ClimateEntityFeature.TARGET_TEMPERATURE
|
||||||
|
| ClimateEntityFeature.FAN_MODE
|
||||||
|
| ClimateEntityFeature.TURN_OFF
|
||||||
|
| ClimateEntityFeature.TURN_ON
|
||||||
)
|
)
|
||||||
|
|
||||||
def __init__(
|
def __init__(
|
||||||
|
|
Loading…
Reference in New Issue