120 lines
3.8 KiB
Python
120 lines
3.8 KiB
Python
"""Support for SimpliSafe binary sensors."""
|
|
from __future__ import annotations
|
|
|
|
from simplipy.device import DeviceTypes
|
|
from simplipy.device.sensor.v3 import SensorV3
|
|
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.const import ENTITY_CATEGORY_DIAGNOSTIC
|
|
from homeassistant.core import HomeAssistant, callback
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from . import SimpliSafe, SimpliSafeEntity
|
|
from .const import DOMAIN, LOGGER
|
|
|
|
SUPPORTED_BATTERY_SENSOR_TYPES = [
|
|
DeviceTypes.CARBON_MONOXIDE,
|
|
DeviceTypes.ENTRY,
|
|
DeviceTypes.GLASS_BREAK,
|
|
DeviceTypes.LEAK,
|
|
DeviceTypes.LOCK_KEYPAD,
|
|
DeviceTypes.MOTION,
|
|
DeviceTypes.SIREN,
|
|
DeviceTypes.SMOKE,
|
|
DeviceTypes.TEMPERATURE,
|
|
]
|
|
|
|
TRIGGERED_SENSOR_TYPES = {
|
|
DeviceTypes.CARBON_MONOXIDE: DEVICE_CLASS_GAS,
|
|
DeviceTypes.ENTRY: DEVICE_CLASS_DOOR,
|
|
DeviceTypes.GLASS_BREAK: DEVICE_CLASS_SAFETY,
|
|
DeviceTypes.LEAK: DEVICE_CLASS_MOISTURE,
|
|
DeviceTypes.MOTION: DEVICE_CLASS_MOTION,
|
|
DeviceTypes.SIREN: DEVICE_CLASS_SAFETY,
|
|
DeviceTypes.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][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(SimpliSafeEntity, BinarySensorEntity):
|
|
"""Define a binary sensor related to whether an entity has been triggered."""
|
|
|
|
def __init__(
|
|
self,
|
|
simplisafe: SimpliSafe,
|
|
system: SystemV3,
|
|
sensor: SensorV3,
|
|
device_class: str,
|
|
) -> None:
|
|
"""Initialize."""
|
|
super().__init__(simplisafe, system, device=sensor)
|
|
|
|
self._attr_device_class = device_class
|
|
self._device: SensorV3
|
|
|
|
@callback
|
|
def async_update_from_rest_api(self) -> None:
|
|
"""Update the entity with the provided REST API data."""
|
|
self._attr_is_on = self._device.triggered
|
|
|
|
|
|
class BatteryBinarySensor(SimpliSafeEntity, BinarySensorEntity):
|
|
"""Define a SimpliSafe battery binary sensor entity."""
|
|
|
|
_attr_device_class = DEVICE_CLASS_BATTERY
|
|
_attr_entity_category = ENTITY_CATEGORY_DIAGNOSTIC
|
|
|
|
def __init__(
|
|
self, simplisafe: SimpliSafe, system: SystemV3, sensor: SensorV3
|
|
) -> None:
|
|
"""Initialize."""
|
|
super().__init__(simplisafe, system, device=sensor)
|
|
|
|
self._attr_name = f"{super().name} Battery"
|
|
self._attr_unique_id = f"{super().unique_id}-battery"
|
|
self._device: SensorV3
|
|
|
|
@callback
|
|
def async_update_from_rest_api(self) -> None:
|
|
"""Update the entity with the provided REST API data."""
|
|
self._attr_is_on = self._device.low_battery
|