mirror of
https://github.com/home-assistant/core.git
synced 2025-05-16 11:59:16 +00:00

* Remove dependencies and requirements * Revert "Remove dependencies and requirements" This reverts commit fe7171b4cd30889bad5adc9a4fd60059d05ba5a7. * Remove dependencies and requirements * Revert "Remove dependencies and requirements" This reverts commit 391355ee2cc53cbe6954f940062b18ae34b05621. * Remove dependencies and requirements * Fix flake8 complaints * Fix more flake8 complaints * Revert non-component removals
28 lines
721 B
Python
28 lines
721 B
Python
"""Support for Zigbee binary sensors."""
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.components.binary_sensor import BinarySensorDevice
|
|
|
|
from . import PLATFORM_SCHEMA, ZigBeeDigitalIn, ZigBeeDigitalInConfig
|
|
|
|
CONF_ON_STATE = 'on_state'
|
|
|
|
DEFAULT_ON_STATE = 'high'
|
|
STATES = ['high', 'low']
|
|
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
|
|
vol.Optional(CONF_ON_STATE): vol.In(STATES),
|
|
})
|
|
|
|
|
|
def setup_platform(hass, config, add_entities, discovery_info=None):
|
|
"""Set up the Zigbee binary sensor platform."""
|
|
add_entities(
|
|
[ZigBeeBinarySensor(hass, ZigBeeDigitalInConfig(config))], True)
|
|
|
|
|
|
class ZigBeeBinarySensor(ZigBeeDigitalIn, BinarySensorDevice):
|
|
"""Use ZigBeeDigitalIn as binary sensor."""
|
|
|
|
pass
|