2023-03-03 18:23:30 +01:00
|
|
|
import logging
|
|
|
|
from datetime import timedelta
|
|
|
|
|
2023-05-17 00:01:33 +02:00
|
|
|
from pyhon.appliance import HonAppliance
|
|
|
|
|
2023-02-19 02:58:21 +01:00
|
|
|
from homeassistant.helpers.entity import DeviceInfo
|
|
|
|
from homeassistant.helpers.update_coordinator import CoordinatorEntity
|
2023-03-03 18:23:30 +01:00
|
|
|
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator
|
|
|
|
from .const import DOMAIN
|
|
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
2023-02-19 02:58:21 +01:00
|
|
|
|
|
|
|
|
|
|
|
class HonEntity(CoordinatorEntity):
|
|
|
|
_attr_has_entity_name = True
|
|
|
|
|
2023-04-10 07:09:54 +02:00
|
|
|
def __init__(self, hass, entry, coordinator, device: HonAppliance) -> None:
|
2023-02-19 02:58:21 +01:00
|
|
|
super().__init__(coordinator)
|
|
|
|
|
|
|
|
self._hon = hass.data[DOMAIN][entry.unique_id]
|
|
|
|
self._hass = hass
|
2023-05-19 01:27:44 +02:00
|
|
|
self._coordinator = coordinator
|
2023-02-19 02:58:21 +01:00
|
|
|
self._device = device
|
|
|
|
|
2023-04-15 22:03:50 +02:00
|
|
|
self._attr_unique_id = self._device.unique_id
|
2023-02-19 02:58:21 +01:00
|
|
|
|
|
|
|
@property
|
|
|
|
def device_info(self):
|
|
|
|
return DeviceInfo(
|
2023-04-15 22:03:50 +02:00
|
|
|
identifiers={(DOMAIN, self._device.unique_id)},
|
2023-03-08 23:00:55 +01:00
|
|
|
manufacturer=self._device.get("brand", ""),
|
2023-04-10 19:51:16 +02:00
|
|
|
name=self._device.nick_name
|
|
|
|
if self._device.nick_name
|
|
|
|
else self._device.model_name,
|
2023-02-19 02:58:21 +01:00
|
|
|
model=self._device.model_name,
|
2023-03-08 23:00:55 +01:00
|
|
|
sw_version=self._device.get("fwVersion", ""),
|
2023-02-19 02:58:21 +01:00
|
|
|
)
|
2023-03-03 18:23:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
class HonCoordinator(DataUpdateCoordinator):
|
2023-04-10 07:09:54 +02:00
|
|
|
def __init__(self, hass, device: HonAppliance):
|
2023-03-03 18:23:30 +01:00
|
|
|
"""Initialize my coordinator."""
|
2023-04-10 19:51:16 +02:00
|
|
|
super().__init__(
|
|
|
|
hass,
|
|
|
|
_LOGGER,
|
2023-04-15 22:03:50 +02:00
|
|
|
name=device.unique_id,
|
2023-04-10 19:51:16 +02:00
|
|
|
update_interval=timedelta(seconds=30),
|
|
|
|
)
|
2023-03-03 18:23:30 +01:00
|
|
|
self._device = device
|
|
|
|
|
|
|
|
async def _async_update_data(self):
|
|
|
|
await self._device.update()
|
2023-05-07 16:39:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
def unique_entities(base_entities, new_entities):
|
|
|
|
result = list(base_entities)
|
|
|
|
existing_entities = [entity.key for entity in base_entities]
|
|
|
|
for entity in new_entities:
|
|
|
|
if entity.key not in existing_entities:
|
|
|
|
result.append(entity)
|
|
|
|
return tuple(result)
|