2019-02-13 20:21:14 +00:00
|
|
|
"""Support for Zigbee binary sensors."""
|
2016-09-07 01:28:55 +00:00
|
|
|
import voluptuous as vol
|
|
|
|
|
2016-01-29 12:00:53 +00:00
|
|
|
from homeassistant.components.binary_sensor import BinarySensorDevice
|
2019-03-21 05:56:46 +00:00
|
|
|
|
2020-04-07 15:41:23 +00:00
|
|
|
from . import DOMAIN, PLATFORM_SCHEMA, ZigBeeDigitalIn, ZigBeeDigitalInConfig
|
2016-09-07 01:28:55 +00:00
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
CONF_ON_STATE = "on_state"
|
2016-09-07 01:28:55 +00:00
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
DEFAULT_ON_STATE = "high"
|
|
|
|
STATES = ["high", "low"]
|
2016-01-24 08:02:14 +00:00
|
|
|
|
2019-07-31 19:25:30 +00: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 14:37:30 +00:00
|
|
|
def setup_platform(hass, config, add_entities, discovery_info=None):
|
2018-10-24 16:59:52 +00:00
|
|
|
"""Set up the Zigbee binary sensor platform."""
|
2020-04-07 15:41:23 +00: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 19:21:08 +00:00
|
|
|
"""Use ZigBeeDigitalIn as binary sensor."""
|