mirror of https://github.com/home-assistant/core
111 lines
3.7 KiB
Python
111 lines
3.7 KiB
Python
"""Sensor support for Skybell Doorbells."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from collections.abc import Callable
|
|
from dataclasses import dataclass
|
|
from datetime import datetime
|
|
|
|
from aioskybell import SkybellDevice
|
|
from aioskybell.helpers import const as CONST
|
|
|
|
from homeassistant.components.sensor import (
|
|
SensorDeviceClass,
|
|
SensorEntity,
|
|
SensorEntityDescription,
|
|
)
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import EntityCategory
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
from homeassistant.helpers.typing import StateType
|
|
|
|
from .entity import DOMAIN, SkybellEntity
|
|
|
|
|
|
@dataclass(frozen=True, kw_only=True)
|
|
class SkybellSensorEntityDescription(SensorEntityDescription):
|
|
"""Class to describe a Skybell sensor."""
|
|
|
|
value_fn: Callable[[SkybellDevice], StateType | datetime]
|
|
|
|
|
|
SENSOR_TYPES: tuple[SkybellSensorEntityDescription, ...] = (
|
|
SkybellSensorEntityDescription(
|
|
key="chime_level",
|
|
translation_key="chime_level",
|
|
value_fn=lambda device: device.outdoor_chime_level,
|
|
),
|
|
SkybellSensorEntityDescription(
|
|
key="last_button_event",
|
|
translation_key="last_button_event",
|
|
device_class=SensorDeviceClass.TIMESTAMP,
|
|
value_fn=lambda device: device.latest("button").get(CONST.CREATED_AT),
|
|
),
|
|
SkybellSensorEntityDescription(
|
|
key="last_motion_event",
|
|
translation_key="last_motion_event",
|
|
device_class=SensorDeviceClass.TIMESTAMP,
|
|
value_fn=lambda device: device.latest("motion").get(CONST.CREATED_AT),
|
|
),
|
|
SkybellSensorEntityDescription(
|
|
key=CONST.ATTR_LAST_CHECK_IN,
|
|
translation_key="last_check_in",
|
|
entity_registry_enabled_default=False,
|
|
device_class=SensorDeviceClass.TIMESTAMP,
|
|
entity_category=EntityCategory.DIAGNOSTIC,
|
|
value_fn=lambda device: device.last_check_in,
|
|
),
|
|
SkybellSensorEntityDescription(
|
|
key="motion_threshold",
|
|
translation_key="motion_threshold",
|
|
entity_registry_enabled_default=False,
|
|
entity_category=EntityCategory.DIAGNOSTIC,
|
|
value_fn=lambda device: device.motion_threshold,
|
|
),
|
|
SkybellSensorEntityDescription(
|
|
key="video_profile",
|
|
translation_key="video_profile",
|
|
entity_registry_enabled_default=False,
|
|
entity_category=EntityCategory.DIAGNOSTIC,
|
|
value_fn=lambda device: device.video_profile,
|
|
),
|
|
SkybellSensorEntityDescription(
|
|
key=CONST.ATTR_WIFI_SSID,
|
|
translation_key="wifi_ssid",
|
|
entity_registry_enabled_default=False,
|
|
entity_category=EntityCategory.DIAGNOSTIC,
|
|
value_fn=lambda device: device.wifi_ssid,
|
|
),
|
|
SkybellSensorEntityDescription(
|
|
key=CONST.ATTR_WIFI_STATUS,
|
|
translation_key="wifi_status",
|
|
entity_registry_enabled_default=False,
|
|
entity_category=EntityCategory.DIAGNOSTIC,
|
|
value_fn=lambda device: device.wifi_status,
|
|
),
|
|
)
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant, entry: ConfigEntry, async_add_entities: AddEntitiesCallback
|
|
) -> None:
|
|
"""Set up Skybell sensor."""
|
|
async_add_entities(
|
|
SkybellSensor(coordinator, description)
|
|
for coordinator in hass.data[DOMAIN][entry.entry_id]
|
|
for description in SENSOR_TYPES
|
|
if coordinator.device.owner or description.key not in CONST.ATTR_OWNER_STATS
|
|
)
|
|
|
|
|
|
class SkybellSensor(SkybellEntity, SensorEntity):
|
|
"""A sensor implementation for Skybell devices."""
|
|
|
|
entity_description: SkybellSensorEntityDescription
|
|
|
|
@property
|
|
def native_value(self) -> StateType | datetime:
|
|
"""Return the state of the sensor."""
|
|
return self.entity_description.value_fn(self._device)
|