72 lines
1.9 KiB
Python
72 lines
1.9 KiB
Python
"""Sensors flow for Withings."""
|
|
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
|
|
from withings_api.common import NotifyAppli
|
|
|
|
from homeassistant.components.binary_sensor import (
|
|
BinarySensorDeviceClass,
|
|
BinarySensorEntity,
|
|
BinarySensorEntityDescription,
|
|
)
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from .common import (
|
|
BaseWithingsSensor,
|
|
UpdateType,
|
|
WithingsEntityDescription,
|
|
async_get_data_manager,
|
|
)
|
|
from .const import Measurement
|
|
|
|
|
|
@dataclass
|
|
class WithingsBinarySensorEntityDescription(
|
|
BinarySensorEntityDescription, WithingsEntityDescription
|
|
):
|
|
"""Immutable class for describing withings binary sensor data."""
|
|
|
|
|
|
BINARY_SENSORS = [
|
|
# Webhook measurements.
|
|
WithingsBinarySensorEntityDescription(
|
|
key=Measurement.IN_BED.value,
|
|
measurement=Measurement.IN_BED,
|
|
measure_type=NotifyAppli.BED_IN,
|
|
name="In bed",
|
|
icon="mdi:bed",
|
|
update_type=UpdateType.WEBHOOK,
|
|
device_class=BinarySensorDeviceClass.OCCUPANCY,
|
|
),
|
|
]
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up the sensor config entry."""
|
|
data_manager = await async_get_data_manager(hass, entry)
|
|
|
|
entities = [
|
|
WithingsHealthBinarySensor(data_manager, attribute)
|
|
for attribute in BINARY_SENSORS
|
|
]
|
|
|
|
async_add_entities(entities, True)
|
|
|
|
|
|
class WithingsHealthBinarySensor(BaseWithingsSensor, BinarySensorEntity):
|
|
"""Implementation of a Withings sensor."""
|
|
|
|
entity_description: WithingsBinarySensorEntityDescription
|
|
|
|
@property
|
|
def is_on(self) -> bool | None:
|
|
"""Return true if the binary sensor is on."""
|
|
return self._state_data
|