46 lines
1.2 KiB
Python
46 lines
1.2 KiB
Python
"""Support for Lupusec Security System binary sensors."""
|
|
from datetime import timedelta
|
|
import logging
|
|
|
|
import lupupy.constants as CONST
|
|
|
|
from homeassistant.components.binary_sensor import DEVICE_CLASSES, BinarySensorEntity
|
|
|
|
from . import DOMAIN as LUPUSEC_DOMAIN, LupusecDevice
|
|
|
|
SCAN_INTERVAL = timedelta(seconds=2)
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
def setup_platform(hass, config, add_entities, discovery_info=None):
|
|
"""Set up a sensor for an Lupusec device."""
|
|
if discovery_info is None:
|
|
return
|
|
|
|
data = hass.data[LUPUSEC_DOMAIN]
|
|
|
|
device_types = [CONST.TYPE_OPENING]
|
|
|
|
devices = []
|
|
for device in data.lupusec.get_devices(generic_type=device_types):
|
|
devices.append(LupusecBinarySensor(data, device))
|
|
|
|
add_entities(devices)
|
|
|
|
|
|
class LupusecBinarySensor(LupusecDevice, BinarySensorEntity):
|
|
"""A binary sensor implementation for Lupusec device."""
|
|
|
|
@property
|
|
def is_on(self):
|
|
"""Return True if the binary sensor is on."""
|
|
return self._device.is_on
|
|
|
|
@property
|
|
def device_class(self):
|
|
"""Return the class of the binary sensor."""
|
|
if self._device.generic_type not in DEVICE_CLASSES:
|
|
return None
|
|
return self._device.generic_type
|