2016-01-24 08:02:14 +00:00
|
|
|
"""
|
|
|
|
Contains functionality to use a ZigBee device as a binary sensor.
|
2016-01-29 12:00:53 +00:00
|
|
|
|
2016-02-01 10:47:09 +00:00
|
|
|
For more details about this platform, please refer to the documentation at
|
|
|
|
https://home-assistant.io/components/binary_sensor.zigbee/
|
|
|
|
"""
|
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
|
2016-01-24 08:02:14 +00:00
|
|
|
from homeassistant.components.zigbee import (
|
2016-09-07 01:28:55 +00:00
|
|
|
ZigBeeDigitalIn, ZigBeeDigitalInConfig, PLATFORM_SCHEMA)
|
|
|
|
|
|
|
|
CONF_ON_STATE = 'on_state'
|
|
|
|
|
|
|
|
DEFAULT_ON_STATE = 'high'
|
|
|
|
DEPENDENCIES = ['zigbee']
|
|
|
|
|
|
|
|
STATES = ['high', 'low']
|
2016-01-24 08:02:14 +00:00
|
|
|
|
2016-09-07 01:28:55 +00:00
|
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
|
|
|
|
vol.Optional(CONF_ON_STATE): vol.In(STATES),
|
|
|
|
})
|
2016-01-24 08:02:14 +00:00
|
|
|
|
|
|
|
|
2016-09-07 01:28:55 +00:00
|
|
|
def setup_platform(hass, config, add_devices, discovery_info=None):
|
2017-04-30 05:04:49 +00:00
|
|
|
"""Set up the ZigBee binary sensor platform."""
|
2017-03-01 16:57:23 +00:00
|
|
|
add_devices(
|
|
|
|
[ZigBeeBinarySensor(hass, ZigBeeDigitalInConfig(config))], 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."""
|
|
|
|
|
2016-01-29 12:00:53 +00:00
|
|
|
pass
|