core/homeassistant/components/zigbee/switch.py

27 lines
670 B
Python
Raw Normal View History

"""Support for Zigbee switches."""
2016-09-07 01:28:55 +00:00
import voluptuous as vol
from homeassistant.components.switch import SwitchDevice
from . import PLATFORM_SCHEMA, ZigBeeDigitalOut, ZigBeeDigitalOutConfig
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"
2016-09-07 01:28:55 +00:00
2019-07-31 19:25:30 +00:00
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
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