116 lines
3.8 KiB
Python
116 lines
3.8 KiB
Python
"""Support for Verisure binary sensors."""
|
|
from __future__ import annotations
|
|
|
|
from homeassistant.components.binary_sensor import (
|
|
DEVICE_CLASS_CONNECTIVITY,
|
|
DEVICE_CLASS_OPENING,
|
|
BinarySensorEntity,
|
|
)
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity import DeviceInfo, Entity
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
from homeassistant.helpers.update_coordinator import CoordinatorEntity
|
|
|
|
from .const import CONF_GIID, DOMAIN
|
|
from .coordinator import VerisureDataUpdateCoordinator
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up Verisure binary sensors based on a config entry."""
|
|
coordinator: VerisureDataUpdateCoordinator = hass.data[DOMAIN][entry.entry_id]
|
|
|
|
sensors: list[Entity] = [VerisureEthernetStatus(coordinator)]
|
|
|
|
sensors.extend(
|
|
VerisureDoorWindowSensor(coordinator, serial_number)
|
|
for serial_number in coordinator.data["door_window"]
|
|
)
|
|
|
|
async_add_entities(sensors)
|
|
|
|
|
|
class VerisureDoorWindowSensor(CoordinatorEntity, BinarySensorEntity):
|
|
"""Representation of a Verisure door window sensor."""
|
|
|
|
coordinator: VerisureDataUpdateCoordinator
|
|
|
|
_attr_device_class = DEVICE_CLASS_OPENING
|
|
|
|
def __init__(
|
|
self, coordinator: VerisureDataUpdateCoordinator, serial_number: str
|
|
) -> None:
|
|
"""Initialize the Verisure door window sensor."""
|
|
super().__init__(coordinator)
|
|
self._attr_name = coordinator.data["door_window"][serial_number]["area"]
|
|
self._attr_unique_id = f"{serial_number}_door_window"
|
|
self.serial_number = serial_number
|
|
|
|
@property
|
|
def device_info(self) -> DeviceInfo:
|
|
"""Return device information about this entity."""
|
|
area = self.coordinator.data["door_window"][self.serial_number]["area"]
|
|
return DeviceInfo(
|
|
name=area,
|
|
suggested_area=area,
|
|
manufacturer="Verisure",
|
|
model="Shock Sensor Detector",
|
|
identifiers={(DOMAIN, self.serial_number)},
|
|
via_device=(DOMAIN, self.coordinator.entry.data[CONF_GIID]),
|
|
configuration_url="https://mypages.verisure.com",
|
|
)
|
|
|
|
@property
|
|
def is_on(self) -> bool:
|
|
"""Return the state of the sensor."""
|
|
return (
|
|
self.coordinator.data["door_window"][self.serial_number]["state"] == "OPEN"
|
|
)
|
|
|
|
@property
|
|
def available(self) -> bool:
|
|
"""Return True if entity is available."""
|
|
return (
|
|
super().available
|
|
and self.serial_number in self.coordinator.data["door_window"]
|
|
)
|
|
|
|
|
|
class VerisureEthernetStatus(CoordinatorEntity, BinarySensorEntity):
|
|
"""Representation of a Verisure VBOX internet status."""
|
|
|
|
coordinator: VerisureDataUpdateCoordinator
|
|
|
|
_attr_name = "Verisure Ethernet status"
|
|
_attr_device_class = DEVICE_CLASS_CONNECTIVITY
|
|
|
|
@property
|
|
def unique_id(self) -> str:
|
|
"""Return the unique ID for this entity."""
|
|
return f"{self.coordinator.entry.data[CONF_GIID]}_ethernet"
|
|
|
|
@property
|
|
def device_info(self) -> DeviceInfo:
|
|
"""Return device information about this entity."""
|
|
return DeviceInfo(
|
|
name="Verisure Alarm",
|
|
manufacturer="Verisure",
|
|
model="VBox",
|
|
identifiers={(DOMAIN, self.coordinator.entry.data[CONF_GIID])},
|
|
configuration_url="https://mypages.verisure.com",
|
|
)
|
|
|
|
@property
|
|
def is_on(self) -> bool:
|
|
"""Return the state of the sensor."""
|
|
return self.coordinator.data["ethernet"]
|
|
|
|
@property
|
|
def available(self) -> bool:
|
|
"""Return True if entity is available."""
|
|
return super().available and self.coordinator.data["ethernet"] is not None
|