70 lines
2.3 KiB
Python
70 lines
2.3 KiB
Python
"""Base entity for zimi integrations."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
|
|
from zcc import ControlPoint
|
|
from zcc.device import ControlPointDevice
|
|
|
|
from homeassistant.helpers.device_registry import DeviceInfo
|
|
from homeassistant.helpers.entity import Entity
|
|
|
|
from .const import DOMAIN
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
class ZimiEntity(Entity):
|
|
"""Representation of a Zimi API entity."""
|
|
|
|
_attr_should_poll = False
|
|
_attr_has_entity_name = True
|
|
|
|
def __init__(
|
|
self, device: ControlPointDevice, api: ControlPoint, use_device_name=True
|
|
) -> None:
|
|
"""Initialize an HA Entity which is a ZimiDevice."""
|
|
|
|
self._device = device
|
|
self._attr_unique_id = device.identifier
|
|
self._attr_device_info = DeviceInfo(
|
|
identifiers={(DOMAIN, device.manufacture_info.identifier)},
|
|
manufacturer=device.manufacture_info.manufacturer,
|
|
model=device.manufacture_info.model,
|
|
name=device.manufacture_info.name,
|
|
hw_version=device.manufacture_info.hwVersion,
|
|
sw_version=device.manufacture_info.firmwareVersion,
|
|
suggested_area=device.room,
|
|
via_device=(DOMAIN, api.mac),
|
|
)
|
|
if use_device_name:
|
|
self._attr_name = device.name.strip()
|
|
self._attr_suggested_area = device.room
|
|
|
|
@property
|
|
def available(self) -> bool:
|
|
"""Return True if Home Assistant is able to read the state and control the underlying device."""
|
|
return self._device.is_connected
|
|
|
|
async def async_added_to_hass(self) -> None:
|
|
"""Subscribe to the events."""
|
|
await super().async_added_to_hass()
|
|
self._device.subscribe(self)
|
|
|
|
async def async_will_remove_from_hass(self) -> None:
|
|
"""Cleanup ZimiLight with removal of notification prior to removal."""
|
|
self._device.unsubscribe(self)
|
|
await super().async_will_remove_from_hass()
|
|
|
|
def notify(self, _observable: object) -> None:
|
|
"""Receive notification from device that state has changed.
|
|
|
|
No data is fetched for the notification but schedule_update_ha_state is called.
|
|
"""
|
|
|
|
_LOGGER.debug(
|
|
"Received notification() for %s in %s", self._device.name, self._device.room
|
|
)
|
|
self.schedule_update_ha_state(force_refresh=True)
|