118 lines
3.6 KiB
Python
118 lines
3.6 KiB
Python
"""Support for SimpliSafe binary sensors."""
|
|
from __future__ import annotations
|
|
|
|
from simplipy.entity import Entity as SimplipyEntity, EntityTypes
|
|
from simplipy.system.v2 import SystemV2
|
|
from simplipy.system.v3 import SystemV3
|
|
|
|
from homeassistant.components.binary_sensor import (
|
|
DEVICE_CLASS_BATTERY,
|
|
DEVICE_CLASS_DOOR,
|
|
DEVICE_CLASS_GAS,
|
|
DEVICE_CLASS_MOISTURE,
|
|
DEVICE_CLASS_MOTION,
|
|
DEVICE_CLASS_SAFETY,
|
|
DEVICE_CLASS_SMOKE,
|
|
BinarySensorEntity,
|
|
)
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant, callback
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from . import SimpliSafe, SimpliSafeBaseSensor
|
|
from .const import DATA_CLIENT, DOMAIN, LOGGER
|
|
|
|
SUPPORTED_BATTERY_SENSOR_TYPES = [
|
|
EntityTypes.carbon_monoxide,
|
|
EntityTypes.entry,
|
|
EntityTypes.glass_break,
|
|
EntityTypes.leak,
|
|
EntityTypes.lock_keypad,
|
|
EntityTypes.motion,
|
|
EntityTypes.siren,
|
|
EntityTypes.smoke,
|
|
EntityTypes.temperature,
|
|
]
|
|
|
|
TRIGGERED_SENSOR_TYPES = {
|
|
EntityTypes.carbon_monoxide: DEVICE_CLASS_GAS,
|
|
EntityTypes.entry: DEVICE_CLASS_DOOR,
|
|
EntityTypes.glass_break: DEVICE_CLASS_SAFETY,
|
|
EntityTypes.leak: DEVICE_CLASS_MOISTURE,
|
|
EntityTypes.motion: DEVICE_CLASS_MOTION,
|
|
EntityTypes.siren: DEVICE_CLASS_SAFETY,
|
|
EntityTypes.smoke: DEVICE_CLASS_SMOKE,
|
|
}
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant, entry: ConfigEntry, async_add_entities: AddEntitiesCallback
|
|
) -> None:
|
|
"""Set up SimpliSafe binary sensors based on a config entry."""
|
|
simplisafe = hass.data[DOMAIN][DATA_CLIENT][entry.entry_id]
|
|
|
|
sensors: list[BatteryBinarySensor | TriggeredBinarySensor] = []
|
|
|
|
for system in simplisafe.systems.values():
|
|
if system.version == 2:
|
|
LOGGER.info("Skipping sensor setup for V2 system: %s", system.system_id)
|
|
continue
|
|
|
|
for sensor in system.sensors.values():
|
|
if sensor.type in TRIGGERED_SENSOR_TYPES:
|
|
sensors.append(
|
|
TriggeredBinarySensor(
|
|
simplisafe,
|
|
system,
|
|
sensor,
|
|
TRIGGERED_SENSOR_TYPES[sensor.type],
|
|
)
|
|
)
|
|
if sensor.type in SUPPORTED_BATTERY_SENSOR_TYPES:
|
|
sensors.append(BatteryBinarySensor(simplisafe, system, sensor))
|
|
|
|
async_add_entities(sensors)
|
|
|
|
|
|
class TriggeredBinarySensor(SimpliSafeBaseSensor, BinarySensorEntity):
|
|
"""Define a binary sensor related to whether an entity has been triggered."""
|
|
|
|
def __init__(
|
|
self,
|
|
simplisafe: SimpliSafe,
|
|
system: SystemV2 | SystemV3,
|
|
sensor: SimplipyEntity,
|
|
device_class: str,
|
|
) -> None:
|
|
"""Initialize."""
|
|
super().__init__(simplisafe, system, sensor)
|
|
|
|
self._attr_device_class = device_class
|
|
|
|
@callback
|
|
def async_update_from_rest_api(self) -> None:
|
|
"""Update the entity with the provided REST API data."""
|
|
self._attr_is_on = self._sensor.triggered
|
|
|
|
|
|
class BatteryBinarySensor(SimpliSafeBaseSensor, BinarySensorEntity):
|
|
"""Define a SimpliSafe battery binary sensor entity."""
|
|
|
|
_attr_device_class = DEVICE_CLASS_BATTERY
|
|
|
|
def __init__(
|
|
self,
|
|
simplisafe: SimpliSafe,
|
|
system: SystemV2 | SystemV3,
|
|
sensor: SimplipyEntity,
|
|
) -> None:
|
|
"""Initialize."""
|
|
super().__init__(simplisafe, system, sensor)
|
|
|
|
self._attr_unique_id = f"{super().unique_id}-battery"
|
|
|
|
@callback
|
|
def async_update_from_rest_api(self) -> None:
|
|
"""Update the entity with the provided REST API data."""
|
|
self._attr_is_on = self._sensor.low_battery
|