Small improvements

This commit is contained in:
Andre Basche 2024-03-18 01:11:23 +01:00
parent 6e8576c7bd
commit 38a67ad64c
5 changed files with 34 additions and 12 deletions

View File

@ -153,7 +153,9 @@ class HonACClimateEntity(HonEntity, ClimateEntity):
SWING_BOTH, SWING_BOTH,
] ]
self._attr_supported_features = ( self._attr_supported_features = (
ClimateEntityFeature.TARGET_TEMPERATURE ClimateEntityFeature.TURN_ON
| ClimateEntityFeature.TURN_OFF
| ClimateEntityFeature.TARGET_TEMPERATURE
| ClimateEntityFeature.FAN_MODE | ClimateEntityFeature.FAN_MODE
| ClimateEntityFeature.SWING_MODE | ClimateEntityFeature.SWING_MODE
| ClimateEntityFeature.PRESET_MODE | ClimateEntityFeature.PRESET_MODE
@ -295,11 +297,17 @@ class HonClimateEntity(HonEntity, ClimateEntity):
) -> None: ) -> None:
super().__init__(hass, entry, device, description) super().__init__(hass, entry, device, description)
self._attr_supported_features = (
ClimateEntityFeature.TURN_ON
| ClimateEntityFeature.TARGET_TEMPERATURE
)
self._attr_temperature_unit = UnitOfTemperature.CELSIUS self._attr_temperature_unit = UnitOfTemperature.CELSIUS
self._set_temperature_bound() self._set_temperature_bound()
self._attr_hvac_modes = [description.mode] self._attr_hvac_modes = [description.mode]
if "stopProgram" in device.commands: if "stopProgram" in device.commands:
self._attr_supported_features |= ClimateEntityFeature.TURN_OFF
self._attr_hvac_modes += [HVACMode.OFF] self._attr_hvac_modes += [HVACMode.OFF]
modes = [] modes = []
else: else:
@ -317,13 +325,8 @@ class HonClimateEntity(HonEntity, ClimateEntity):
modes.append(mode) modes.append(mode)
if modes: if modes:
self._attr_supported_features = ( self._attr_supported_features |= ClimateEntityFeature.PRESET_MODE
ClimateEntityFeature.TARGET_TEMPERATURE
| ClimateEntityFeature.PRESET_MODE
)
self._attr_preset_modes = modes self._attr_preset_modes = modes
else:
self._attr_supported_features = ClimateEntityFeature.TARGET_TEMPERATURE
self._handle_coordinator_update(update=False) self._handle_coordinator_update(update=False)

View File

@ -42,6 +42,13 @@ LIGHTS: dict[str, tuple[LightEntityDescription, ...]] = {
translation_key="light", translation_key="light",
), ),
), ),
"DW": (
LightEntityDescription(
key="settings.lightStatus",
name="Light status",
translation_key="light",
),
),
} }

View File

@ -9,7 +9,7 @@
"iot_class": "cloud_polling", "iot_class": "cloud_polling",
"issue_tracker": "https://github.com/Andre0512/hon/issues", "issue_tracker": "https://github.com/Andre0512/hon/issues",
"requirements": [ "requirements": [
"pyhOn==0.16.0" "pyhOn==0.16.1"
], ],
"version": "0.13.0" "version": "0.13.1"
} }

View File

@ -139,6 +139,12 @@ NUMBERS: dict[str, tuple[NumberEntityDescription, ...]] = {
icon="mdi:water", icon="mdi:water",
translation_key="water_hard", translation_key="water_hard",
), ),
HonNumberEntityDescription(
key="settings.waterHard",
name="Water hard",
icon="mdi:water",
translation_key="water_hard",
),
), ),
"AC": ( "AC": (
HonNumberEntityDescription( HonNumberEntityDescription(

View File

@ -269,6 +269,12 @@ SWITCHES: dict[str, tuple[SwitchEntityDescription, ...]] = {
icon="mdi:volume-off", icon="mdi:volume-off",
translation_key="buzzer", translation_key="buzzer",
), ),
HonConfigSwitchEntityDescription(
key="startProgram.tabStatus",
name="Tab Status",
icon="mdi:silverware-clean",
# translation_key="buzzer",
),
), ),
"AC": ( "AC": (
HonSwitchEntityDescription( HonSwitchEntityDescription(
@ -408,9 +414,9 @@ async def async_setup_entry(
entity = HonConfigSwitchEntity(hass, entry, device, description) entity = HonConfigSwitchEntity(hass, entry, device, description)
elif isinstance(description, HonControlSwitchEntityDescription): elif isinstance(description, HonControlSwitchEntityDescription):
if not ( if not (
device.get(description.key) is not None device.get(description.key) is not None
or description.turn_on_key in list(device.commands) or description.turn_on_key in list(device.commands)
or description.turn_off_key in list(device.commands) or description.turn_off_key in list(device.commands)
): ):
continue continue
entity = HonControlSwitchEntity(hass, entry, device, description) entity = HonControlSwitchEntity(hass, entry, device, description)