Compare commits
2 Commits
6.8.3
...
6.8.4.beta1
| Author | SHA1 | Date | |
|---|---|---|---|
| 02f60770e8 | |||
| 23ddff95b3 |
@@ -82,6 +82,10 @@ T = TypeVar("T", bound=UnderlyingEntity)
|
|||||||
class BaseThermostat(ClimateEntity, RestoreEntity, Generic[T]):
|
class BaseThermostat(ClimateEntity, RestoreEntity, Generic[T]):
|
||||||
"""Representation of a base class for all Versatile Thermostat device."""
|
"""Representation of a base class for all Versatile Thermostat device."""
|
||||||
|
|
||||||
|
# breaking change with 2024.12 climate workaround
|
||||||
|
_attr_swing_horizontal_modes = []
|
||||||
|
_attr_swing_horizontal_mode = ""
|
||||||
|
|
||||||
_entity_component_unrecorded_attributes = (
|
_entity_component_unrecorded_attributes = (
|
||||||
ClimateEntity._entity_component_unrecorded_attributes.union(
|
ClimateEntity._entity_component_unrecorded_attributes.union(
|
||||||
frozenset(
|
frozenset(
|
||||||
|
|||||||
@@ -118,7 +118,7 @@ async def async_setup_entry(
|
|||||||
SERVICE_SET_AUTO_REGULATION_MODE,
|
SERVICE_SET_AUTO_REGULATION_MODE,
|
||||||
{
|
{
|
||||||
vol.Required("auto_regulation_mode"): vol.In(
|
vol.Required("auto_regulation_mode"): vol.In(
|
||||||
["None", "Light", "Medium", "Strong", "Slow"]
|
["None", "Light", "Medium", "Strong", "Slow", "Expert"]
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
"service_set_auto_regulation_mode",
|
"service_set_auto_regulation_mode",
|
||||||
|
|||||||
Reference in New Issue
Block a user