1
0
mirror of https://github.com/esphome/esphome.git synced 2024-10-06 19:00:59 +01:00
esphome/esphomeyaml/components/switch/shutdown.py

23 lines
775 B
Python
Raw Normal View History

import voluptuous as vol
2018-05-06 14:56:12 +01:00
import esphomeyaml.config_validation as cv
from esphomeyaml.components import switch
2018-05-20 11:41:52 +01:00
from esphomeyaml.const import CONF_INVERTED, CONF_MAKE_ID, CONF_NAME
from esphomeyaml.helpers import App, Application, variable
2018-05-06 14:56:12 +01:00
2018-06-02 21:22:20 +01:00
MakeShutdownSwitch = Application.MakeShutdownSwitch
PLATFORM_SCHEMA = cv.nameable(switch.SWITCH_PLATFORM_SCHEMA.extend({
2018-06-02 21:22:20 +01: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 11:41:52 +01:00
2018-05-06 14:56:12 +01:00
def to_code(config):
rhs = App.make_shutdown_switch(config[CONF_NAME])
2018-06-02 21:22:20 +01:00
shutdown = variable(config[CONF_MAKE_ID], rhs)
2018-05-20 11:41:52 +01:00
switch.setup_switch(shutdown.Pshutdown, shutdown.Pmqtt, config)
2018-05-06 14:56:12 +01:00
BUILD_FLAGS = '-DUSE_SHUTDOWN_SWITCH'