esphome/esphomeyaml/components/switch/shutdown.py

29 lines
973 B
Python
Raw Normal View History

import voluptuous as vol
2018-05-06 15:56:12 +02:00
import esphomeyaml.config_validation as cv
from esphomeyaml.components import switch
2018-05-20 12:41:52 +02:00
from esphomeyaml.const import CONF_INVERTED, CONF_MAKE_ID, CONF_NAME
from esphomeyaml.helpers import App, Application, variable
2018-05-06 15:56:12 +02:00
2018-06-02 22:22:20 +02:00
MakeShutdownSwitch = Application.MakeShutdownSwitch
ShutdownSwitch = switch.switch_ns.ShutdownSwitch
2018-06-02 22:22:20 +02:00
PLATFORM_SCHEMA = cv.nameable(switch.SWITCH_PLATFORM_SCHEMA.extend({
cv.GenerateID(): cv.declare_variable_id(ShutdownSwitch),
2018-06-02 22:22:20 +02:00
cv.GenerateID(CONF_MAKE_ID): cv.declare_variable_id(MakeShutdownSwitch),
vol.Optional(CONF_INVERTED): cv.invalid("Shutdown switches do not support inverted mode!"),
}))
2018-05-20 12:41:52 +02:00
2018-05-06 15:56:12 +02:00
def to_code(config):
rhs = App.make_shutdown_switch(config[CONF_NAME])
2018-06-02 22:22:20 +02:00
shutdown = variable(config[CONF_MAKE_ID], rhs)
2018-05-20 12:41:52 +02:00
switch.setup_switch(shutdown.Pshutdown, shutdown.Pmqtt, config)
2018-05-06 15:56:12 +02:00
BUILD_FLAGS = '-DUSE_SHUTDOWN_SWITCH'
def to_hass_config(data, config):
return switch.core_to_hass_config(data, config)