core/homeassistant/components/flume/entity.py

53 lines
1.6 KiB
Python

"""Platform for shared base classes for sensors."""
from __future__ import annotations
from homeassistant.helpers.entity import DeviceInfo, EntityDescription
from homeassistant.helpers.update_coordinator import (
CoordinatorEntity,
DataUpdateCoordinator,
)
from .const import DOMAIN
class FlumeEntity(CoordinatorEntity[DataUpdateCoordinator[None]]):
"""Base entity class."""
_attr_attribution = "Data provided by Flume API"
_attr_has_entity_name = True
def __init__(
self,
coordinator: DataUpdateCoordinator,
description: EntityDescription,
device_id: str,
location_name: str,
is_bridge: bool = False,
) -> None:
"""Class initializer."""
super().__init__(coordinator)
self.entity_description = description
self.device_id = device_id
if is_bridge:
name = "Flume Bridge"
else:
name = "Flume Sensor"
self._attr_unique_id = f"{description.key}_{device_id}"
self._attr_device_info = DeviceInfo(
identifiers={(DOMAIN, device_id)},
manufacturer="Flume, Inc.",
model="Flume Smart Water Monitor",
name=f"{name} {location_name}",
configuration_url="https://portal.flumewater.com",
)
async def async_added_to_hass(self):
"""Request an update when added."""
await super().async_added_to_hass()
# We do not ask for an update with async_add_entities()
# because it will update disabled entities
await self.coordinator.async_request_refresh()