hass-core/homeassistant/components/hive/binary_sensor.py

72 lines
2.3 KiB
Python
Raw Normal View History

"""Support for the Hive binary sensors."""
2018-01-15 23:24:12 +01:00
from homeassistant.components.binary_sensor import BinarySensorDevice
from . import DATA_HIVE, DOMAIN
2018-01-15 23:24:12 +01:00
2019-07-31 12:25:30 -07:00
DEVICETYPE_DEVICE_CLASS = {"motionsensor": "motion", "contactsensor": "opening"}
2018-01-15 23:24:12 +01:00
def setup_platform(hass, config, add_entities, discovery_info=None):
2018-01-15 23:24:12 +01:00
"""Set up Hive sensor devices."""
if discovery_info is None:
return
session = hass.data.get(DATA_HIVE)
add_entities([HiveBinarySensorEntity(session, discovery_info)])
2018-01-15 23:24:12 +01:00
class HiveBinarySensorEntity(BinarySensorDevice):
"""Representation of a Hive binary sensor."""
def __init__(self, hivesession, hivedevice):
"""Initialize the hive sensor."""
self.node_id = hivedevice["Hive_NodeID"]
self.node_name = hivedevice["Hive_NodeName"]
self.device_type = hivedevice["HA_DeviceType"]
self.node_device_type = hivedevice["Hive_DeviceType"]
self.session = hivesession
self.attributes = {}
self.data_updatesource = f"{self.device_type}.{self.node_id}"
self._unique_id = f"{self.node_id}-{self.device_type}"
2018-01-15 23:24:12 +01:00
self.session.entities.append(self)
2019-01-09 04:15:12 +00:00
@property
def unique_id(self):
"""Return unique ID of entity."""
return self._unique_id
@property
def device_info(self):
"""Return device information."""
2019-07-31 12:25:30 -07:00
return {"identifiers": {(DOMAIN, self.unique_id)}, "name": self.name}
2019-01-09 04:15:12 +00:00
2018-01-15 23:24:12 +01:00
def handle_update(self, updatesource):
"""Handle the new update request."""
if f"{self.device_type}.{self.node_id}" not in updatesource:
2018-01-15 23:24:12 +01:00
self.schedule_update_ha_state()
@property
def device_class(self):
"""Return the class of this sensor."""
return DEVICETYPE_DEVICE_CLASS.get(self.node_device_type)
@property
def name(self):
"""Return the name of the binary sensor."""
return self.node_name
@property
def device_state_attributes(self):
"""Show Device Attributes."""
return self.attributes
2018-01-15 23:24:12 +01:00
@property
def is_on(self):
"""Return true if the binary sensor is on."""
2019-07-31 12:25:30 -07:00
return self.session.sensor.get_state(self.node_id, self.node_device_type)
2018-01-15 23:24:12 +01:00
def update(self):
2018-01-27 21:58:27 +02:00
"""Update all Node data from Hive."""
2018-01-15 23:24:12 +01:00
self.session.core.update_data(self.node_id)
2019-07-31 12:25:30 -07:00
self.attributes = self.session.attributes.state_attributes(self.node_id)