168 lines
5.9 KiB
Python
168 lines
5.9 KiB
Python
"""
|
|
Binary sensors on Zigbee Home Automation networks.
|
|
|
|
For more details on this platform, please refer to the documentation
|
|
at https://home-assistant.io/components/binary_sensor.zha/
|
|
"""
|
|
import logging
|
|
|
|
from homeassistant.components.binary_sensor import DOMAIN, BinarySensorDevice
|
|
from homeassistant.helpers.dispatcher import async_dispatcher_connect
|
|
from .core.const import (
|
|
DATA_ZHA, DATA_ZHA_DISPATCHERS, ZHA_DISCOVERY_NEW, LISTENER_ON_OFF,
|
|
LISTENER_LEVEL, LISTENER_ZONE, SIGNAL_ATTR_UPDATED, SIGNAL_MOVE_LEVEL,
|
|
SIGNAL_SET_LEVEL, LISTENER_ATTRIBUTE, UNKNOWN, OPENING, ZONE, OCCUPANCY,
|
|
ATTR_LEVEL, SENSOR_TYPE)
|
|
from .entity import ZhaEntity
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
DEPENDENCIES = ['zha']
|
|
|
|
# Zigbee Cluster Library Zone Type to Home Assistant device class
|
|
CLASS_MAPPING = {
|
|
0x000d: 'motion',
|
|
0x0015: 'opening',
|
|
0x0028: 'smoke',
|
|
0x002a: 'moisture',
|
|
0x002b: 'gas',
|
|
0x002d: 'vibration',
|
|
}
|
|
|
|
|
|
async def get_ias_device_class(listener):
|
|
"""Get the HA device class from the listener."""
|
|
zone_type = await listener.get_attribute_value('zone_type')
|
|
return CLASS_MAPPING.get(zone_type)
|
|
|
|
|
|
DEVICE_CLASS_REGISTRY = {
|
|
UNKNOWN: None,
|
|
OPENING: OPENING,
|
|
ZONE: get_ias_device_class,
|
|
OCCUPANCY: OCCUPANCY,
|
|
}
|
|
|
|
|
|
async def async_setup_platform(hass, config, async_add_entities,
|
|
discovery_info=None):
|
|
"""Old way of setting up Zigbee Home Automation binary sensors."""
|
|
pass
|
|
|
|
|
|
async def async_setup_entry(hass, config_entry, async_add_entities):
|
|
"""Set up the Zigbee Home Automation binary sensor from config entry."""
|
|
async def async_discover(discovery_info):
|
|
await _async_setup_entities(hass, config_entry, async_add_entities,
|
|
[discovery_info])
|
|
|
|
unsub = async_dispatcher_connect(
|
|
hass, ZHA_DISCOVERY_NEW.format(DOMAIN), async_discover)
|
|
hass.data[DATA_ZHA][DATA_ZHA_DISPATCHERS].append(unsub)
|
|
|
|
binary_sensors = hass.data.get(DATA_ZHA, {}).get(DOMAIN)
|
|
if binary_sensors is not None:
|
|
await _async_setup_entities(hass, config_entry, async_add_entities,
|
|
binary_sensors.values())
|
|
del hass.data[DATA_ZHA][DOMAIN]
|
|
|
|
|
|
async def _async_setup_entities(hass, config_entry, async_add_entities,
|
|
discovery_infos):
|
|
"""Set up the ZHA binary sensors."""
|
|
entities = []
|
|
for discovery_info in discovery_infos:
|
|
entities.append(BinarySensor(**discovery_info))
|
|
|
|
async_add_entities(entities, update_before_add=True)
|
|
|
|
|
|
class BinarySensor(ZhaEntity, BinarySensorDevice):
|
|
"""ZHA BinarySensor."""
|
|
|
|
_domain = DOMAIN
|
|
_device_class = None
|
|
|
|
def __init__(self, **kwargs):
|
|
"""Initialize the ZHA binary sensor."""
|
|
super().__init__(**kwargs)
|
|
self._device_state_attributes = {}
|
|
self._zone_listener = self.cluster_listeners.get(LISTENER_ZONE)
|
|
self._on_off_listener = self.cluster_listeners.get(LISTENER_ON_OFF)
|
|
self._level_listener = self.cluster_listeners.get(LISTENER_LEVEL)
|
|
self._attr_listener = self.cluster_listeners.get(LISTENER_ATTRIBUTE)
|
|
self._zha_sensor_type = kwargs[SENSOR_TYPE]
|
|
self._level = None
|
|
|
|
async def _determine_device_class(self):
|
|
"""Determine the device class for this binary sensor."""
|
|
device_class_supplier = DEVICE_CLASS_REGISTRY.get(
|
|
self._zha_sensor_type)
|
|
if callable(device_class_supplier):
|
|
listener = self.cluster_listeners.get(self._zha_sensor_type)
|
|
if listener is None:
|
|
return None
|
|
return await device_class_supplier(listener)
|
|
return device_class_supplier
|
|
|
|
async def async_added_to_hass(self):
|
|
"""Run when about to be added to hass."""
|
|
self._device_class = await self._determine_device_class()
|
|
await super().async_added_to_hass()
|
|
if self._level_listener:
|
|
await self.async_accept_signal(
|
|
self._level_listener, SIGNAL_SET_LEVEL, self.set_level)
|
|
await self.async_accept_signal(
|
|
self._level_listener, SIGNAL_MOVE_LEVEL, self.move_level)
|
|
if self._on_off_listener:
|
|
await self.async_accept_signal(
|
|
self._on_off_listener, SIGNAL_ATTR_UPDATED,
|
|
self.async_set_state)
|
|
if self._zone_listener:
|
|
await self.async_accept_signal(
|
|
self._zone_listener, SIGNAL_ATTR_UPDATED, self.async_set_state)
|
|
if self._attr_listener:
|
|
await self.async_accept_signal(
|
|
self._attr_listener, SIGNAL_ATTR_UPDATED, self.async_set_state)
|
|
|
|
@property
|
|
def is_on(self) -> bool:
|
|
"""Return if the switch is on based on the statemachine."""
|
|
if self._state is None:
|
|
return False
|
|
return self._state
|
|
|
|
@property
|
|
def device_class(self) -> str:
|
|
"""Return device class from component DEVICE_CLASSES."""
|
|
return self._device_class
|
|
|
|
def async_set_state(self, state):
|
|
"""Set the state."""
|
|
self._state = bool(state)
|
|
self.async_schedule_update_ha_state()
|
|
|
|
def move_level(self, change):
|
|
"""Increment the level, setting state if appropriate."""
|
|
level = self._level or 0
|
|
if not self._state and change > 0:
|
|
level = 0
|
|
self._level = min(254, max(0, level + change))
|
|
self._state = bool(self._level)
|
|
self.async_schedule_update_ha_state()
|
|
|
|
def set_level(self, level):
|
|
"""Set the level, setting state if appropriate."""
|
|
self._level = level
|
|
self._state = bool(level)
|
|
self.async_schedule_update_ha_state()
|
|
|
|
@property
|
|
def device_state_attributes(self):
|
|
"""Return the device state attributes."""
|
|
if self._level_listener is not None:
|
|
self._device_state_attributes.update({
|
|
ATTR_LEVEL: self._state and self._level or 0
|
|
})
|
|
return self._device_state_attributes
|