mirror of
https://github.com/home-assistant/core.git
synced 2025-11-12 12:30:31 +00:00
71 lines
2.4 KiB
Python
71 lines
2.4 KiB
Python
"""Entities for the ViCare integration."""
|
|
|
|
from PyViCare.PyViCareDevice import Device as PyViCareDevice
|
|
from PyViCare.PyViCareDeviceConfig import PyViCareDeviceConfig
|
|
from PyViCare.PyViCareHeatingDevice import (
|
|
HeatingDeviceWithComponent as PyViCareHeatingDeviceComponent,
|
|
)
|
|
|
|
from homeassistant.helpers.device_registry import DeviceInfo
|
|
from homeassistant.helpers.entity import Entity
|
|
|
|
from .const import DOMAIN, VIESSMANN_DEVELOPER_PORTAL
|
|
|
|
|
|
class ViCareEntity(Entity):
|
|
"""Base class for ViCare entities."""
|
|
|
|
_attr_has_entity_name = True
|
|
|
|
def __init__(
|
|
self,
|
|
unique_id_suffix: str,
|
|
device_serial: str | None,
|
|
device_config: PyViCareDeviceConfig,
|
|
device: PyViCareDevice,
|
|
component: PyViCareHeatingDeviceComponent | None = None,
|
|
) -> None:
|
|
"""Initialize the entity."""
|
|
gateway_serial = device_config.getConfig().serial
|
|
device_id = device_config.getId()
|
|
model = device_config.getModel().replace("_", " ")
|
|
|
|
identifier = (
|
|
f"{gateway_serial}_{device_serial.replace('-', '_')}"
|
|
if device_serial is not None
|
|
else f"{gateway_serial}_{device_id}"
|
|
)
|
|
|
|
self._api: PyViCareDevice | PyViCareHeatingDeviceComponent = (
|
|
component if component else device
|
|
)
|
|
self._attr_unique_id = f"{identifier}-{unique_id_suffix}"
|
|
if component:
|
|
self._attr_unique_id += f"-{component.id}"
|
|
|
|
self._attr_device_info = DeviceInfo(
|
|
identifiers={(DOMAIN, identifier)},
|
|
name=model,
|
|
manufacturer="Viessmann",
|
|
model=model,
|
|
configuration_url=VIESSMANN_DEVELOPER_PORTAL,
|
|
)
|
|
|
|
if device_serial and device_serial.startswith("zigbee-"):
|
|
parts = device_serial.split("-", 2)
|
|
if len(parts) == 3:
|
|
_, zigbee_ieee, _ = parts
|
|
self._attr_device_info["via_device"] = (
|
|
DOMAIN,
|
|
f"{gateway_serial}_zigbee_{zigbee_ieee}",
|
|
)
|
|
elif (
|
|
len(parts) == 2
|
|
and len(zigbee_ieee := device_serial.removeprefix("zigbee-")) == 16
|
|
):
|
|
self._attr_device_info["serial_number"] = "-".join(
|
|
zigbee_ieee.upper()[i : i + 2] for i in range(0, 16, 2)
|
|
)
|
|
else:
|
|
self._attr_device_info["serial_number"] = device_serial
|