mirror of https://github.com/home-assistant/core
102 lines
3.1 KiB
Python
102 lines
3.1 KiB
Python
"""Support for TPLink binary sensors."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
from typing import Final
|
|
|
|
from kasa import Feature
|
|
|
|
from homeassistant.components.binary_sensor import (
|
|
BinarySensorDeviceClass,
|
|
BinarySensorEntity,
|
|
BinarySensorEntityDescription,
|
|
)
|
|
from homeassistant.core import HomeAssistant, callback
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from . import TPLinkConfigEntry
|
|
from .entity import CoordinatedTPLinkFeatureEntity, TPLinkFeatureEntityDescription
|
|
|
|
|
|
@dataclass(frozen=True, kw_only=True)
|
|
class TPLinkBinarySensorEntityDescription(
|
|
BinarySensorEntityDescription, TPLinkFeatureEntityDescription
|
|
):
|
|
"""Base class for a TPLink feature based sensor entity description."""
|
|
|
|
|
|
BINARY_SENSOR_DESCRIPTIONS: Final = (
|
|
TPLinkBinarySensorEntityDescription(
|
|
key="overheated",
|
|
device_class=BinarySensorDeviceClass.PROBLEM,
|
|
),
|
|
TPLinkBinarySensorEntityDescription(
|
|
key="battery_low",
|
|
device_class=BinarySensorDeviceClass.BATTERY,
|
|
),
|
|
TPLinkBinarySensorEntityDescription(
|
|
key="cloud_connection",
|
|
device_class=BinarySensorDeviceClass.CONNECTIVITY,
|
|
),
|
|
# To be replaced & disabled per default by the upcoming update platform.
|
|
TPLinkBinarySensorEntityDescription(
|
|
key="update_available",
|
|
device_class=BinarySensorDeviceClass.UPDATE,
|
|
),
|
|
TPLinkBinarySensorEntityDescription(
|
|
key="temperature_warning",
|
|
),
|
|
TPLinkBinarySensorEntityDescription(
|
|
key="humidity_warning",
|
|
),
|
|
TPLinkBinarySensorEntityDescription(
|
|
key="is_open",
|
|
device_class=BinarySensorDeviceClass.DOOR,
|
|
),
|
|
TPLinkBinarySensorEntityDescription(
|
|
key="water_alert",
|
|
device_class=BinarySensorDeviceClass.MOISTURE,
|
|
),
|
|
TPLinkBinarySensorEntityDescription(
|
|
key="motion_detected",
|
|
device_class=BinarySensorDeviceClass.MOTION,
|
|
),
|
|
)
|
|
|
|
BINARYSENSOR_DESCRIPTIONS_MAP = {desc.key: desc for desc in BINARY_SENSOR_DESCRIPTIONS}
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: TPLinkConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up sensors."""
|
|
data = config_entry.runtime_data
|
|
parent_coordinator = data.parent_coordinator
|
|
children_coordinators = data.children_coordinators
|
|
device = parent_coordinator.device
|
|
|
|
entities = CoordinatedTPLinkFeatureEntity.entities_for_device_and_its_children(
|
|
hass=hass,
|
|
device=device,
|
|
coordinator=parent_coordinator,
|
|
feature_type=Feature.Type.BinarySensor,
|
|
entity_class=TPLinkBinarySensorEntity,
|
|
descriptions=BINARYSENSOR_DESCRIPTIONS_MAP,
|
|
child_coordinators=children_coordinators,
|
|
)
|
|
async_add_entities(entities)
|
|
|
|
|
|
class TPLinkBinarySensorEntity(CoordinatedTPLinkFeatureEntity, BinarySensorEntity):
|
|
"""Representation of a TPLink binary sensor."""
|
|
|
|
entity_description: TPLinkBinarySensorEntityDescription
|
|
|
|
@callback
|
|
def _async_update_attrs(self) -> None:
|
|
"""Update the entity's attributes."""
|
|
self._attr_is_on = self._feature.value
|