124 lines
4.6 KiB
Python
124 lines
4.6 KiB
Python
"""Platform for binary sensor integration."""
|
|
from __future__ import annotations
|
|
from typing import Any
|
|
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 homeassistant.helpers.entity import DeviceInfo
|
|
from .const import DOMAIN
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback
|
|
) -> None:
|
|
hub = hass.data[DOMAIN][config_entry.entry_id]
|
|
|
|
new_devices = []
|
|
for sensor in hub.cync_motion_sensors:
|
|
if not hub.cync_motion_sensors[sensor]._update_callback and sensor in config_entry.options["motion_sensors"]:
|
|
new_devices.append(CyncMotionSensorEntity(hub.cync_motion_sensors[sensor]))
|
|
for sensor in hub.cync_ambient_light_sensors:
|
|
if not hub.cync_ambient_light_sensors[sensor]._update_callback and sensor in config_entry.options["ambient_light_sensors"]:
|
|
new_devices.append(CyncAmbientLightSensorEntity(hub.cync_ambient_light_sensors[sensor]))
|
|
|
|
if new_devices:
|
|
async_add_entities(new_devices)
|
|
|
|
|
|
class CyncMotionSensorEntity(BinarySensorEntity):
|
|
"""Representation of a Cync Motion Sensor."""
|
|
|
|
should_poll = False
|
|
|
|
def __init__(self, motion_sensor) -> None:
|
|
"""Initialize the sensor."""
|
|
self.motion_sensor = motion_sensor
|
|
|
|
async def async_added_to_hass(self) -> None:
|
|
"""Run when this Entity has been added to HA."""
|
|
self.motion_sensor.register(self.schedule_update_ha_state)
|
|
|
|
async def async_will_remove_from_hass(self) -> None:
|
|
"""Entity being removed from hass."""
|
|
self.motion_sensor.reset()
|
|
|
|
@property
|
|
def device_info(self) -> DeviceInfo:
|
|
"""Return device registry information for this entity."""
|
|
return DeviceInfo(
|
|
identifiers = {(DOMAIN, f"{self.motion_sensor.room.name} ({self.motion_sensor.home_name})")},
|
|
manufacturer = "Cync by Savant",
|
|
name = f"{self.motion_sensor.room.name} ({self.motion_sensor.home_name})",
|
|
suggested_area = f"{self.motion_sensor.room.name}",
|
|
)
|
|
|
|
@property
|
|
def unique_id(self) -> str:
|
|
"""Return Unique ID string."""
|
|
return 'cync_motion_sensor_' + self.motion_sensor.device_id
|
|
|
|
@property
|
|
def name(self) -> str:
|
|
"""Return the name of the motion_sensor."""
|
|
return self.motion_sensor.name + " Motion"
|
|
|
|
@property
|
|
def is_on(self) -> bool | None:
|
|
"""Return true if light is on."""
|
|
return self.motion_sensor.motion
|
|
|
|
@property
|
|
def device_class(self) -> str | None:
|
|
"""Return the device class"""
|
|
return BinarySensorDeviceClass.MOTION
|
|
|
|
class CyncAmbientLightSensorEntity(BinarySensorEntity):
|
|
"""Representation of a Cync Ambient Light Sensor."""
|
|
|
|
should_poll = False
|
|
|
|
def __init__(self, ambient_light_sensor) -> None:
|
|
"""Initialize the sensor."""
|
|
self.ambient_light_sensor = ambient_light_sensor
|
|
|
|
async def async_added_to_hass(self) -> None:
|
|
"""Run when this Entity has been added to HA."""
|
|
self.ambient_light_sensor.register(self.schedule_update_ha_state)
|
|
|
|
async def async_will_remove_from_hass(self) -> None:
|
|
"""Entity being removed from hass."""
|
|
self.ambient_light_sensor.reset()
|
|
|
|
@property
|
|
def device_info(self) -> DeviceInfo:
|
|
"""Return device registry information for this entity."""
|
|
return DeviceInfo(
|
|
identifiers = {(DOMAIN, f"{self.ambient_light_sensor.room.name} ({self.ambient_light_sensor.home_name})")},
|
|
manufacturer = "Cync by Savant",
|
|
name = f"{self.ambient_light_sensor.room.name} ({self.ambient_light_sensor.home_name})",
|
|
suggested_area = f"{self.ambient_light_sensor.room.name}",
|
|
)
|
|
|
|
@property
|
|
def unique_id(self) -> str:
|
|
"""Return Unique ID string."""
|
|
return 'cync_ambient_light_sensor_' + self.ambient_light_sensor.device_id
|
|
|
|
@property
|
|
def name(self) -> str:
|
|
"""Return the name of the ambient_light_sensor."""
|
|
return self.ambient_light_sensor.name + " Ambient Light"
|
|
|
|
@property
|
|
def is_on(self) -> bool | None:
|
|
"""Return true if light is on."""
|
|
return self.ambient_light_sensor.ambient_light
|
|
|
|
@property
|
|
def device_class(self) -> str | None:
|
|
"""Return the device class"""
|
|
return BinarySensorDeviceClass.LIGHT
|
|
|