mirror of https://github.com/home-assistant/core
64 lines
1.7 KiB
Python
64 lines
1.7 KiB
Python
"""Support for Lupusec Security System binary sensors."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from datetime import timedelta
|
|
from functools import partial
|
|
import logging
|
|
|
|
import lupupy.constants as CONST
|
|
|
|
from homeassistant.components.binary_sensor import (
|
|
BinarySensorDeviceClass,
|
|
BinarySensorEntity,
|
|
)
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from . import DOMAIN
|
|
from .entity import LupusecBaseSensor
|
|
|
|
SCAN_INTERVAL = timedelta(seconds=2)
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up a binary sensors for a Lupusec device."""
|
|
|
|
data = hass.data[DOMAIN][config_entry.entry_id]
|
|
|
|
device_types = CONST.TYPE_OPENING + CONST.TYPE_SENSOR
|
|
|
|
partial_func = partial(data.get_devices, generic_type=device_types)
|
|
devices = await hass.async_add_executor_job(partial_func)
|
|
|
|
async_add_entities(
|
|
LupusecBinarySensor(device, config_entry.entry_id) for device in devices
|
|
)
|
|
|
|
|
|
class LupusecBinarySensor(LupusecBaseSensor, BinarySensorEntity):
|
|
"""A binary sensor implementation for Lupusec device."""
|
|
|
|
_attr_name = None
|
|
|
|
@property
|
|
def is_on(self) -> bool:
|
|
"""Return True if the binary sensor is on."""
|
|
return self._device.is_on
|
|
|
|
@property
|
|
def device_class(self) -> BinarySensorDeviceClass | None:
|
|
"""Return the class of the binary sensor."""
|
|
if self._device.generic_type not in (
|
|
item.value for item in BinarySensorDeviceClass
|
|
):
|
|
return None
|
|
return self._device.generic_type
|