core/homeassistant/components/switch/zigbee.py

36 lines
925 B
Python
Raw Normal View History

2016-01-24 08:02:14 +00:00
"""
2018-10-24 16:59:52 +00:00
Contains functionality to use a Zigbee device as a switch.
For more details about this platform, please refer to the documentation at
https://home-assistant.io/components/switch.zigbee/
"""
2016-09-07 01:28:55 +00:00
import voluptuous as vol
from homeassistant.components.switch import SwitchDevice
2016-01-24 08:02:14 +00:00
from homeassistant.components.zigbee import (
2016-09-07 01:28:55 +00:00
ZigBeeDigitalOut, ZigBeeDigitalOutConfig, PLATFORM_SCHEMA)
DEPENDENCIES = ['zigbee']
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
def setup_platform(hass, config, add_entities, discovery_info=None):
2018-10-24 16:59:52 +00:00
"""Set up the Zigbee switch platform."""
add_entities([ZigBeeSwitch(hass, ZigBeeDigitalOutConfig(config))])
class ZigBeeSwitch(ZigBeeDigitalOut, SwitchDevice):
2018-10-24 16:59:52 +00:00
"""Representation of a Zigbee Digital Out device."""
2016-03-08 12:35:39 +00:00
pass