esphome/esphomeyaml/components/switch/shutdown.py

23 lines
811 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
PLATFORM_SCHEMA = switch.PLATFORM_SCHEMA.extend({
2018-05-20 12:41:52 +02:00
cv.GenerateID('shutdown_switch', CONF_MAKE_ID): cv.register_variable_id,
vol.Optional(CONF_INVERTED): cv.invalid("Shutdown switches do not support inverted mode!"),
2018-05-20 12:41:52 +02:00
}).extend(switch.SWITCH_SCHEMA.schema)
MakeShutdownSwitch = Application.MakeShutdownSwitch
2018-05-06 15:56:12 +02:00
def to_code(config):
rhs = App.make_shutdown_switch(config[CONF_NAME])
2018-05-20 12:41:52 +02:00
shutdown = variable(MakeShutdownSwitch, config[CONF_MAKE_ID], rhs)
switch.setup_switch(shutdown.Pshutdown, shutdown.Pmqtt, config)
2018-05-06 15:56:12 +02:00
BUILD_FLAGS = '-DUSE_SHUTDOWN_SWITCH'