core/homeassistant/components/xbee/switch.py

25 lines
717 B
Python
Raw Normal View History

2020-05-14 10:19:59 +00:00
"""Support for XBee Zigbee switches."""
2016-09-07 01:28:55 +00:00
import voluptuous as vol
from homeassistant.components.switch import SwitchEntity
2020-05-14 10:19:59 +00:00
from . import DOMAIN, PLATFORM_SCHEMA, XBeeDigitalOut, XBeeDigitalOutConfig
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):
2020-05-14 10:19:59 +00:00
"""Set up the XBee Zigbee switch platform."""
zigbee_device = hass.data[DOMAIN]
2020-05-14 10:19:59 +00:00
add_entities([XBeeSwitch(XBeeDigitalOutConfig(config), zigbee_device)])
2020-05-14 10:19:59 +00:00
class XBeeSwitch(XBeeDigitalOut, SwitchEntity):
"""Representation of a XBee Zigbee Digital Out device."""