Use EntityDescription - blink (#54360)
This commit is contained in:
parent
539ed56000
commit
b411372872
2 changed files with 59 additions and 37 deletions
|
@ -1,47 +1,60 @@
|
|||
"""Support for Blink system camera control."""
|
||||
from __future__ import annotations
|
||||
|
||||
from homeassistant.components.binary_sensor import (
|
||||
DEVICE_CLASS_BATTERY,
|
||||
DEVICE_CLASS_MOTION,
|
||||
BinarySensorEntity,
|
||||
BinarySensorEntityDescription,
|
||||
)
|
||||
|
||||
from .const import DOMAIN, TYPE_BATTERY, TYPE_CAMERA_ARMED, TYPE_MOTION_DETECTED
|
||||
|
||||
BINARY_SENSORS = {
|
||||
TYPE_BATTERY: ["Battery", DEVICE_CLASS_BATTERY],
|
||||
TYPE_CAMERA_ARMED: ["Camera Armed", None],
|
||||
TYPE_MOTION_DETECTED: ["Motion Detected", DEVICE_CLASS_MOTION],
|
||||
}
|
||||
BINARY_SENSORS_TYPES: tuple[BinarySensorEntityDescription, ...] = (
|
||||
BinarySensorEntityDescription(
|
||||
key=TYPE_BATTERY,
|
||||
name="Battery",
|
||||
device_class=DEVICE_CLASS_BATTERY,
|
||||
),
|
||||
BinarySensorEntityDescription(
|
||||
key=TYPE_CAMERA_ARMED,
|
||||
name="Camera Armed",
|
||||
),
|
||||
BinarySensorEntityDescription(
|
||||
key=TYPE_MOTION_DETECTED,
|
||||
name="Motion Detected",
|
||||
device_class=DEVICE_CLASS_MOTION,
|
||||
),
|
||||
)
|
||||
|
||||
|
||||
async def async_setup_entry(hass, config, async_add_entities):
|
||||
"""Set up the blink binary sensors."""
|
||||
data = hass.data[DOMAIN][config.entry_id]
|
||||
|
||||
entities = []
|
||||
for camera in data.cameras:
|
||||
for sensor_type in BINARY_SENSORS:
|
||||
entities.append(BlinkBinarySensor(data, camera, sensor_type))
|
||||
entities = [
|
||||
BlinkBinarySensor(data, camera, description)
|
||||
for camera in data.cameras
|
||||
for description in BINARY_SENSORS_TYPES
|
||||
]
|
||||
async_add_entities(entities)
|
||||
|
||||
|
||||
class BlinkBinarySensor(BinarySensorEntity):
|
||||
"""Representation of a Blink binary sensor."""
|
||||
|
||||
def __init__(self, data, camera, sensor_type):
|
||||
def __init__(self, data, camera, description: BinarySensorEntityDescription):
|
||||
"""Initialize the sensor."""
|
||||
self.data = data
|
||||
self._type = sensor_type
|
||||
name, device_class = BINARY_SENSORS[sensor_type]
|
||||
self._attr_name = f"{DOMAIN} {camera} {name}"
|
||||
self._attr_device_class = device_class
|
||||
self.entity_description = description
|
||||
self._attr_name = f"{DOMAIN} {camera} {description.name}"
|
||||
self._camera = data.cameras[camera]
|
||||
self._attr_unique_id = f"{self._camera.serial}-{sensor_type}"
|
||||
self._attr_unique_id = f"{self._camera.serial}-{description.key}"
|
||||
|
||||
def update(self):
|
||||
"""Update sensor state."""
|
||||
self.data.refresh()
|
||||
state = self._camera.attributes[self._type]
|
||||
if self._type == TYPE_BATTERY:
|
||||
state = self._camera.attributes[self.entity_description.key]
|
||||
if self.entity_description.key == TYPE_BATTERY:
|
||||
state = state != "ok"
|
||||
self._attr_is_on = state
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue