30 lines
965 B
Python
30 lines
965 B
Python
|
"""PermobilEntity class."""
|
||
|
|
||
|
from homeassistant.helpers.device_registry import DeviceInfo
|
||
|
from homeassistant.helpers.entity import EntityDescription
|
||
|
from homeassistant.helpers.update_coordinator import CoordinatorEntity
|
||
|
|
||
|
from .const import DOMAIN
|
||
|
from .coordinator import MyPermobilCoordinator
|
||
|
|
||
|
|
||
|
class PermobilEntity(CoordinatorEntity[MyPermobilCoordinator]):
|
||
|
"""Representation of a permobil Entity."""
|
||
|
|
||
|
_attr_has_entity_name = True
|
||
|
|
||
|
def __init__(
|
||
|
self,
|
||
|
coordinator: MyPermobilCoordinator,
|
||
|
description: EntityDescription,
|
||
|
) -> None:
|
||
|
"""Initialize the entity."""
|
||
|
super().__init__(coordinator)
|
||
|
self.entity_description = description
|
||
|
self._attr_unique_id = f"{coordinator.p_api.email}_{description.key}"
|
||
|
self._attr_device_info = DeviceInfo(
|
||
|
identifiers={(DOMAIN, coordinator.p_api.email)},
|
||
|
manufacturer="Permobil",
|
||
|
name="Permobil Wheelchair",
|
||
|
)
|