core/homeassistant/components/zigbee/light.py

27 lines
683 B
Python
Raw Normal View History

"""Support for Zigbee lights."""
2016-09-07 01:28:55 +00:00
import voluptuous as vol
from homeassistant.components.light import Light
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"
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, default=DEFAULT_ON_STATE): vol.In(STATES)}
)
2016-01-24 08:02:14 +00:00
def setup_platform(hass, config, add_entities, discovery_info=None):
2016-03-07 21:08:21 +00:00
"""Create and add an entity based on the configuration."""
add_entities([ZigBeeLight(hass, ZigBeeDigitalOutConfig(config))])
class ZigBeeLight(ZigBeeDigitalOut, Light):
2016-03-07 21:08:21 +00:00
"""Use ZigBeeDigitalOut as light."""
pass