* use isort to sort imports for components starting with 'z' * add skip to end of zha/core/channels/__init__.py * put 'pylint: disable=import-error' at the right place * remove the import of config_flow in zha/__init__.py According to @balloob it is no longer needed. * revert previous commit * isort:skip homeassistant/components/zha/__init__.py completely
25 lines
669 B
Python
25 lines
669 B
Python
"""Support for Zigbee switches."""
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.components.switch import SwitchDevice
|
|
|
|
from . import PLATFORM_SCHEMA, ZigBeeDigitalOut, ZigBeeDigitalOutConfig
|
|
|
|
CONF_ON_STATE = "on_state"
|
|
|
|
DEFAULT_ON_STATE = "high"
|
|
|
|
STATES = ["high", "low"]
|
|
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({vol.Optional(CONF_ON_STATE): vol.In(STATES)})
|
|
|
|
|
|
def setup_platform(hass, config, add_entities, discovery_info=None):
|
|
"""Set up the Zigbee switch platform."""
|
|
add_entities([ZigBeeSwitch(hass, ZigBeeDigitalOutConfig(config))])
|
|
|
|
|
|
class ZigBeeSwitch(ZigBeeDigitalOut, SwitchDevice):
|
|
"""Representation of a Zigbee Digital Out device."""
|
|
|
|
pass
|