84 lines
2.3 KiB
Python
84 lines
2.3 KiB
Python
"""Support for Vallox ventilation unit binary sensors."""
|
|
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
|
|
from homeassistant.components.binary_sensor import (
|
|
BinarySensorEntity,
|
|
BinarySensorEntityDescription,
|
|
)
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity import EntityCategory
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from . import ValloxDataUpdateCoordinator, ValloxEntity
|
|
from .const import DOMAIN
|
|
|
|
|
|
class ValloxBinarySensorEntity(ValloxEntity, BinarySensorEntity):
|
|
"""Representation of a Vallox binary sensor."""
|
|
|
|
entity_description: ValloxBinarySensorEntityDescription
|
|
_attr_entity_category = EntityCategory.DIAGNOSTIC
|
|
_attr_has_entity_name = True
|
|
|
|
def __init__(
|
|
self,
|
|
name: str,
|
|
coordinator: ValloxDataUpdateCoordinator,
|
|
description: ValloxBinarySensorEntityDescription,
|
|
) -> None:
|
|
"""Initialize the Vallox binary sensor."""
|
|
super().__init__(name, coordinator)
|
|
|
|
self.entity_description = description
|
|
|
|
self._attr_unique_id = f"{self._device_uuid}-{description.key}"
|
|
|
|
@property
|
|
def is_on(self) -> bool | None:
|
|
"""Return true if the binary sensor is on."""
|
|
return self.coordinator.data.get_metric(self.entity_description.metric_key) == 1
|
|
|
|
|
|
@dataclass
|
|
class ValloxMetricKeyMixin:
|
|
"""Dataclass to allow defining metric_key without a default value."""
|
|
|
|
metric_key: str
|
|
|
|
|
|
@dataclass
|
|
class ValloxBinarySensorEntityDescription(
|
|
BinarySensorEntityDescription, ValloxMetricKeyMixin
|
|
):
|
|
"""Describes Vallox binary sensor entity."""
|
|
|
|
|
|
BINARY_SENSOR_ENTITIES: tuple[ValloxBinarySensorEntityDescription, ...] = (
|
|
ValloxBinarySensorEntityDescription(
|
|
key="post_heater",
|
|
name="Post heater",
|
|
icon="mdi:radiator",
|
|
metric_key="A_CYC_IO_HEATER",
|
|
),
|
|
)
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up the sensors."""
|
|
|
|
data = hass.data[DOMAIN][entry.entry_id]
|
|
|
|
async_add_entities(
|
|
[
|
|
ValloxBinarySensorEntity(data["name"], data["coordinator"], description)
|
|
for description in BINARY_SENSOR_ENTITIES
|
|
]
|
|
)
|