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

23 lines
800 B
Python
Raw Normal View History

import voluptuous as vol
2018-04-07 00:23:03 +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-04-07 00:23:03 +01:00
PLATFORM_SCHEMA = switch.PLATFORM_SCHEMA.extend({
2018-05-20 11:41:52 +01:00
cv.GenerateID('restart_switch', CONF_MAKE_ID): cv.register_variable_id,
vol.Optional(CONF_INVERTED): cv.invalid("Restart switches do not support inverted mode!"),
2018-05-20 11:41:52 +01:00
}).extend(switch.SWITCH_SCHEMA.schema)
MakeRestartSwitch = Application.MakeRestartSwitch
2018-04-07 00:23:03 +01:00
def to_code(config):
rhs = App.make_restart_switch(config[CONF_NAME])
2018-05-20 11:41:52 +01:00
restart = variable(MakeRestartSwitch, config[CONF_MAKE_ID], rhs)
switch.setup_switch(restart.Prestart, restart.Pmqtt, config)
2018-05-06 14:56:12 +01:00
BUILD_FLAGS = '-DUSE_RESTART_SWITCH'