2019-02-13 21:21:14 +01:00
|
|
|
"""Support for Zigbee binary sensors."""
|
2016-09-07 03:28:55 +02:00
|
|
|
import voluptuous as vol
|
|
|
|
|
2016-01-29 12:00:53 +00:00
|
|
|
from homeassistant.components.binary_sensor import BinarySensorDevice
|
2019-03-20 22:56:46 -07:00
|
|
|
|
2020-04-07 17:41:23 +02:00
|
|
|
from . import DOMAIN, PLATFORM_SCHEMA, ZigBeeDigitalIn, ZigBeeDigitalInConfig
|
2016-09-07 03:28:55 +02:00
|
|
|
|
2019-07-31 12:25:30 -07:00
|
|
|
CONF_ON_STATE = "on_state"
|
2016-09-07 03:28:55 +02:00
|
|
|
|
2019-07-31 12:25:30 -07:00
|
|
|
DEFAULT_ON_STATE = "high"
|
|
|
|
STATES = ["high", "low"]
|
2016-01-24 08:02:14 +00:00
|
|
|
|
2019-07-31 12:25:30 -07:00
|
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({vol.Optional(CONF_ON_STATE): vol.In(STATES)})
|
2016-01-24 08:02:14 +00:00
|
|
|
|
|
|
|
|
2018-08-24 16:37:30 +02:00
|
|
|
def setup_platform(hass, config, add_entities, discovery_info=None):
|
2018-10-24 18:59:52 +02:00
|
|
|
"""Set up the Zigbee binary sensor platform."""
|
2020-04-07 17:41:23 +02:00
|
|
|
zigbee_device = hass.data[DOMAIN]
|
|
|
|
add_entities(
|
|
|
|
[ZigBeeBinarySensor(ZigBeeDigitalInConfig(config), zigbee_device)], True
|
|
|
|
)
|
2016-01-29 12:00:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ZigBeeBinarySensor(ZigBeeDigitalIn, BinarySensorDevice):
|
2016-03-07 20:21:08 +01:00
|
|
|
"""Use ZigBeeDigitalIn as binary sensor."""
|