2023-02-19 02:58:21 +01:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2023-04-08 04:44:47 +02:00
|
|
|
import logging
|
|
|
|
|
2023-04-10 07:09:54 +02:00
|
|
|
from pyhon import Hon
|
|
|
|
from pyhon.appliance import HonAppliance
|
2023-04-16 16:59:37 +02:00
|
|
|
from pyhon.parameter.fixed import HonParameterFixed
|
2023-02-19 02:58:21 +01:00
|
|
|
|
|
|
|
from homeassistant.components.select import SelectEntity, SelectEntityDescription
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
2023-03-22 08:25:30 +01:00
|
|
|
from homeassistant.const import UnitOfTemperature, UnitOfTime, REVOLUTIONS_PER_MINUTE
|
2023-02-19 02:58:21 +01:00
|
|
|
from homeassistant.core import callback
|
|
|
|
from homeassistant.helpers.entity import EntityCategory
|
|
|
|
|
2023-03-05 21:16:09 +01:00
|
|
|
from .const import DOMAIN
|
2023-03-03 18:23:30 +01:00
|
|
|
from .hon import HonEntity, HonCoordinator
|
|
|
|
|
2023-04-08 04:44:47 +02:00
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
2023-02-19 02:58:21 +01:00
|
|
|
SELECTS = {
|
|
|
|
"WM": (
|
|
|
|
SelectEntityDescription(
|
2023-03-03 18:23:30 +01:00
|
|
|
key="startProgram.spinSpeed",
|
2023-02-19 02:58:21 +01:00
|
|
|
name="Spin speed",
|
|
|
|
entity_category=EntityCategory.CONFIG,
|
2023-03-03 18:23:30 +01:00
|
|
|
icon="mdi:numeric",
|
2023-04-10 19:51:16 +02:00
|
|
|
unit_of_measurement=REVOLUTIONS_PER_MINUTE,
|
2023-02-19 02:58:21 +01:00
|
|
|
),
|
|
|
|
SelectEntityDescription(
|
2023-03-03 18:23:30 +01:00
|
|
|
key="startProgram.temp",
|
2023-02-19 02:58:21 +01:00
|
|
|
name="Temperature",
|
|
|
|
entity_category=EntityCategory.CONFIG,
|
2023-03-03 18:23:30 +01:00
|
|
|
icon="mdi:thermometer",
|
2023-04-10 19:51:16 +02:00
|
|
|
unit_of_measurement=UnitOfTemperature.CELSIUS,
|
2023-02-19 02:58:21 +01:00
|
|
|
),
|
|
|
|
SelectEntityDescription(
|
2023-03-03 18:23:30 +01:00
|
|
|
key="startProgram.program",
|
2023-03-11 00:30:38 +01:00
|
|
|
name="Program",
|
|
|
|
entity_category=EntityCategory.CONFIG,
|
2023-04-22 21:19:32 +02:00
|
|
|
translation_key="programs_wm",
|
2023-02-19 02:58:21 +01:00
|
|
|
),
|
2023-03-21 13:00:50 +01:00
|
|
|
),
|
|
|
|
"TD": (
|
|
|
|
SelectEntityDescription(
|
|
|
|
key="startProgram.program",
|
|
|
|
name="Program",
|
|
|
|
entity_category=EntityCategory.CONFIG,
|
2023-04-22 21:19:32 +02:00
|
|
|
translation_key="programs_td",
|
2023-03-21 13:00:50 +01:00
|
|
|
),
|
2023-03-22 08:25:30 +01:00
|
|
|
SelectEntityDescription(
|
|
|
|
key="startProgram.dryTimeMM",
|
|
|
|
name="Time",
|
|
|
|
entity_category=EntityCategory.CONFIG,
|
|
|
|
icon="mdi:timer",
|
2023-04-10 19:51:16 +02:00
|
|
|
unit_of_measurement=UnitOfTime.MINUTES,
|
2023-03-22 08:25:30 +01:00
|
|
|
),
|
2023-04-07 13:52:55 +02:00
|
|
|
),
|
2023-04-08 04:44:47 +02:00
|
|
|
"WD": (
|
|
|
|
SelectEntityDescription(
|
|
|
|
key="startProgram.program",
|
|
|
|
name="Program",
|
|
|
|
entity_category=EntityCategory.CONFIG,
|
2023-04-22 21:19:32 +02:00
|
|
|
translation_key="programs_wm",
|
2023-04-08 04:44:47 +02:00
|
|
|
),
|
|
|
|
),
|
2023-04-07 13:52:55 +02:00
|
|
|
"OV": (
|
|
|
|
SelectEntityDescription(
|
|
|
|
key="startProgram.program",
|
|
|
|
name="Program",
|
|
|
|
entity_category=EntityCategory.CONFIG,
|
2023-04-22 21:19:32 +02:00
|
|
|
translation_key="programs_ov",
|
2023-04-07 13:52:55 +02:00
|
|
|
),
|
2023-04-08 04:44:47 +02:00
|
|
|
),
|
2023-04-16 13:55:08 +02:00
|
|
|
"IH": (
|
2023-04-15 04:27:40 +02:00
|
|
|
SelectEntityDescription(
|
|
|
|
key="startProgram.program",
|
|
|
|
name="Program",
|
|
|
|
entity_category=EntityCategory.CONFIG,
|
2023-04-22 21:19:32 +02:00
|
|
|
translation_key="programs_ih",
|
2023-04-15 04:27:40 +02:00
|
|
|
),
|
|
|
|
),
|
2023-04-16 21:46:17 +02:00
|
|
|
"DW": (
|
|
|
|
SelectEntityDescription(
|
|
|
|
key="startProgram.program",
|
|
|
|
name="Program",
|
|
|
|
entity_category=EntityCategory.CONFIG,
|
|
|
|
translation_key="programs_dw",
|
|
|
|
),
|
|
|
|
),
|
2023-02-19 02:58:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
async def async_setup_entry(hass, entry: ConfigEntry, async_add_entities) -> None:
|
2023-04-10 07:09:54 +02:00
|
|
|
hon: Hon = hass.data[DOMAIN][entry.unique_id]
|
2023-02-19 02:58:21 +01:00
|
|
|
coordinators = hass.data[DOMAIN]["coordinators"]
|
|
|
|
appliances = []
|
2023-04-10 07:09:54 +02:00
|
|
|
for device in hon.appliances:
|
2023-04-15 22:03:50 +02:00
|
|
|
if device.unique_id in coordinators:
|
|
|
|
coordinator = hass.data[DOMAIN]["coordinators"][device.unique_id]
|
2023-02-19 02:58:21 +01:00
|
|
|
else:
|
|
|
|
coordinator = HonCoordinator(hass, device)
|
2023-04-15 22:03:50 +02:00
|
|
|
hass.data[DOMAIN]["coordinators"][device.unique_id] = coordinator
|
2023-02-19 02:58:21 +01:00
|
|
|
await coordinator.async_config_entry_first_refresh()
|
|
|
|
|
2023-03-08 23:00:55 +01:00
|
|
|
if descriptions := SELECTS.get(device.appliance_type):
|
2023-02-19 02:58:21 +01:00
|
|
|
for description in descriptions:
|
2023-04-08 06:15:33 +02:00
|
|
|
if not device.settings.get(description.key):
|
2023-03-05 19:19:52 +01:00
|
|
|
continue
|
2023-04-10 19:51:16 +02:00
|
|
|
appliances.extend(
|
|
|
|
[HonSelectEntity(hass, coordinator, entry, device, description)]
|
2023-02-19 02:58:21 +01:00
|
|
|
)
|
|
|
|
async_add_entities(appliances)
|
|
|
|
|
|
|
|
|
|
|
|
class HonSelectEntity(HonEntity, SelectEntity):
|
2023-04-10 19:51:16 +02:00
|
|
|
def __init__(
|
|
|
|
self, hass, coordinator, entry, device: HonAppliance, description
|
|
|
|
) -> None:
|
2023-02-19 02:58:21 +01:00
|
|
|
super().__init__(hass, entry, coordinator, device)
|
|
|
|
|
|
|
|
self._coordinator = coordinator
|
|
|
|
self._device = device
|
|
|
|
self.entity_description = description
|
|
|
|
self._attr_unique_id = f"{super().unique_id}{description.key}"
|
|
|
|
|
2023-03-08 23:00:55 +01:00
|
|
|
if not isinstance(self._device.settings[description.key], HonParameterFixed):
|
|
|
|
self._attr_options: list[str] = device.settings[description.key].values
|
2023-02-19 02:58:21 +01:00
|
|
|
else:
|
2023-03-08 23:00:55 +01:00
|
|
|
self._attr_options: list[str] = [device.settings[description.key].value]
|
2023-02-19 02:58:21 +01:00
|
|
|
|
|
|
|
@property
|
|
|
|
def current_option(self) -> str | None:
|
2023-03-08 23:00:55 +01:00
|
|
|
value = self._device.settings[self.entity_description.key].value
|
2023-02-19 02:58:21 +01:00
|
|
|
if value is None or value not in self._attr_options:
|
|
|
|
return None
|
|
|
|
return value
|
|
|
|
|
|
|
|
async def async_select_option(self, option: str) -> None:
|
2023-03-08 23:00:55 +01:00
|
|
|
self._device.settings[self.entity_description.key].value = option
|
2023-02-19 02:58:21 +01:00
|
|
|
await self.coordinator.async_request_refresh()
|
|
|
|
|
|
|
|
@callback
|
|
|
|
def _handle_coordinator_update(self):
|
2023-03-08 23:00:55 +01:00
|
|
|
setting = self._device.settings[self.entity_description.key]
|
2023-04-10 19:51:16 +02:00
|
|
|
if not isinstance(
|
|
|
|
self._device.settings[self.entity_description.key], HonParameterFixed
|
|
|
|
):
|
2023-03-08 23:00:55 +01:00
|
|
|
self._attr_options: list[str] = setting.values
|
2023-02-19 02:58:21 +01:00
|
|
|
else:
|
2023-03-08 23:00:55 +01:00
|
|
|
self._attr_options = [setting.value]
|
|
|
|
self._attr_native_value = setting.value
|
2023-02-19 02:58:21 +01:00
|
|
|
self.async_write_ha_state()
|