* Moved climate components with tests into platform dirs. * Updated tests from climate component. * Moved binary_sensor components with tests into platform dirs. * Updated tests from binary_sensor component. * Moved calendar components with tests into platform dirs. * Updated tests from calendar component. * Moved camera components with tests into platform dirs. * Updated tests from camera component. * Moved cover components with tests into platform dirs. * Updated tests from cover component. * Moved device_tracker components with tests into platform dirs. * Updated tests from device_tracker component. * Moved fan components with tests into platform dirs. * Updated tests from fan component. * Moved geo_location components with tests into platform dirs. * Updated tests from geo_location component. * Moved image_processing components with tests into platform dirs. * Updated tests from image_processing component. * Moved light components with tests into platform dirs. * Updated tests from light component. * Moved lock components with tests into platform dirs. * Moved media_player components with tests into platform dirs. * Updated tests from media_player component. * Moved scene components with tests into platform dirs. * Moved sensor components with tests into platform dirs. * Updated tests from sensor component. * Moved switch components with tests into platform dirs. * Updated tests from sensor component. * Moved vacuum components with tests into platform dirs. * Updated tests from vacuum component. * Moved weather components with tests into platform dirs. * Fixed __init__.py files * Fixes for stuff moved as part of this branch. * Fix stuff needed to merge with balloob's branch. * Formatting issues. * Missing __init__.py files. * Fix-ups * Fixup * Regenerated requirements. * Linting errors fixed. * Fixed more broken tests. * Missing init files. * Fix broken tests. * More broken tests * There seems to be a thread race condition. I suspect the logger stuff is running in another thread, which means waiting until the aio loop is done is missing the log messages. Used sleep instead because that allows the logger thread to run. I think the api_streams sensor might not be thread safe. * Disabled tests, will remove sensor in #22147 * Updated coverage and codeowners.
105 lines
3.3 KiB
Python
105 lines
3.3 KiB
Python
"""
|
|
Support for Rflink binary sensors.
|
|
|
|
For more details about this platform, please refer to the documentation at
|
|
https://home-assistant.io/components/binary_sensor.rflink/
|
|
"""
|
|
import logging
|
|
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.components.binary_sensor import (
|
|
DEVICE_CLASSES_SCHEMA, PLATFORM_SCHEMA, BinarySensorDevice)
|
|
from homeassistant.components.rflink import (
|
|
CONF_ALIASES, CONF_DEVICES, RflinkDevice)
|
|
from homeassistant.const import (
|
|
CONF_FORCE_UPDATE, CONF_NAME, CONF_DEVICE_CLASS)
|
|
import homeassistant.helpers.config_validation as cv
|
|
import homeassistant.helpers.event as evt
|
|
|
|
CONF_OFF_DELAY = 'off_delay'
|
|
DEFAULT_FORCE_UPDATE = False
|
|
|
|
DEPENDENCIES = ['rflink']
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
|
|
vol.Optional(CONF_DEVICES, default={}): {
|
|
cv.string: vol.Schema({
|
|
vol.Optional(CONF_NAME): cv.string,
|
|
vol.Optional(CONF_DEVICE_CLASS): DEVICE_CLASSES_SCHEMA,
|
|
vol.Optional(CONF_FORCE_UPDATE, default=DEFAULT_FORCE_UPDATE):
|
|
cv.boolean,
|
|
vol.Optional(CONF_OFF_DELAY): cv.positive_int,
|
|
vol.Optional(CONF_ALIASES, default=[]):
|
|
vol.All(cv.ensure_list, [cv.string]),
|
|
})
|
|
},
|
|
}, extra=vol.ALLOW_EXTRA)
|
|
|
|
|
|
def devices_from_config(domain_config):
|
|
"""Parse configuration and add Rflink sensor devices."""
|
|
devices = []
|
|
for device_id, config in domain_config[CONF_DEVICES].items():
|
|
device = RflinkBinarySensor(device_id, **config)
|
|
devices.append(device)
|
|
|
|
return devices
|
|
|
|
|
|
async def async_setup_platform(hass, config, async_add_entities,
|
|
discovery_info=None):
|
|
"""Set up the Rflink platform."""
|
|
async_add_entities(devices_from_config(config))
|
|
|
|
|
|
class RflinkBinarySensor(RflinkDevice, BinarySensorDevice):
|
|
"""Representation of an Rflink binary sensor."""
|
|
|
|
def __init__(self, device_id, device_class=None,
|
|
force_update=None, off_delay=None,
|
|
**kwargs):
|
|
"""Handle sensor specific args and super init."""
|
|
self._state = None
|
|
self._device_class = device_class
|
|
self._force_update = force_update
|
|
self._off_delay = off_delay
|
|
self._delay_listener = None
|
|
super().__init__(device_id, **kwargs)
|
|
|
|
def _handle_event(self, event):
|
|
"""Domain specific event handler."""
|
|
command = event['command']
|
|
if command == 'on':
|
|
self._state = True
|
|
elif command == 'off':
|
|
self._state = False
|
|
|
|
if (self._state and self._off_delay is not None):
|
|
def off_delay_listener(now):
|
|
"""Switch device off after a delay."""
|
|
self._delay_listener = None
|
|
self._state = False
|
|
self.async_schedule_update_ha_state()
|
|
|
|
if self._delay_listener is not None:
|
|
self._delay_listener()
|
|
self._delay_listener = evt.async_call_later(
|
|
self.hass, self._off_delay, off_delay_listener)
|
|
|
|
@property
|
|
def is_on(self):
|
|
"""Return true if the binary sensor is on."""
|
|
return self._state
|
|
|
|
@property
|
|
def device_class(self):
|
|
"""Return the class of this sensor."""
|
|
return self._device_class
|
|
|
|
@property
|
|
def force_update(self):
|
|
"""Force update."""
|
|
return self._force_update
|