44 lines
1.4 KiB
Python
44 lines
1.4 KiB
Python
"""Binary Sensor platform for CoolMasterNet integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from homeassistant.components.binary_sensor import (
|
|
BinarySensorDeviceClass,
|
|
BinarySensorEntity,
|
|
BinarySensorEntityDescription,
|
|
)
|
|
from homeassistant.const import EntityCategory
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from .coordinator import CoolmasterConfigEntry
|
|
from .entity import CoolmasterEntity
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: CoolmasterConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up the CoolMasterNet binary_sensor platform."""
|
|
coordinator = config_entry.runtime_data
|
|
async_add_entities(
|
|
CoolmasterCleanFilter(coordinator, unit_id) for unit_id in coordinator.data
|
|
)
|
|
|
|
|
|
class CoolmasterCleanFilter(CoolmasterEntity, BinarySensorEntity):
|
|
"""Representation of a unit's filter state (true means need to be cleaned)."""
|
|
|
|
entity_description = BinarySensorEntityDescription(
|
|
key="clean_filter",
|
|
translation_key="clean_filter",
|
|
device_class=BinarySensorDeviceClass.PROBLEM,
|
|
entity_category=EntityCategory.DIAGNOSTIC,
|
|
)
|
|
|
|
@property
|
|
def is_on(self) -> bool | None:
|
|
"""Return true if the binary sensor is on."""
|
|
return self._unit.clean_filter
|