41 lines
1.2 KiB
Python
41 lines
1.2 KiB
Python
"""Base entity for the Twente Milieu integration."""
|
|
from __future__ import annotations
|
|
|
|
from datetime import date
|
|
|
|
from twentemilieu import WasteType
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import CONF_ID
|
|
from homeassistant.helpers.device_registry import DeviceEntryType
|
|
from homeassistant.helpers.entity import DeviceInfo, Entity
|
|
from homeassistant.helpers.update_coordinator import (
|
|
CoordinatorEntity,
|
|
DataUpdateCoordinator,
|
|
)
|
|
|
|
from .const import DOMAIN
|
|
|
|
|
|
class TwenteMilieuEntity(
|
|
CoordinatorEntity[DataUpdateCoordinator[dict[WasteType, list[date]]]], Entity
|
|
):
|
|
"""Defines a Twente Milieu entity."""
|
|
|
|
_attr_has_entity_name = True
|
|
|
|
def __init__(
|
|
self,
|
|
coordinator: DataUpdateCoordinator[dict[WasteType, list[date]]],
|
|
entry: ConfigEntry,
|
|
) -> None:
|
|
"""Initialize the Twente Milieu entity."""
|
|
super().__init__(coordinator=coordinator)
|
|
self._attr_device_info = DeviceInfo(
|
|
configuration_url="https://www.twentemilieu.nl",
|
|
entry_type=DeviceEntryType.SERVICE,
|
|
identifiers={(DOMAIN, str(entry.data[CONF_ID]))},
|
|
manufacturer="Twente Milieu",
|
|
name="Twente Milieu",
|
|
)
|