esphome/esphomeyaml/components/switch/restart.py

23 lines
800 B
Python
Raw Normal View History

import voluptuous as vol
2018-04-07 01:23:03 +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-04-07 01:23:03 +02:00
PLATFORM_SCHEMA = switch.PLATFORM_SCHEMA.extend({
2018-05-20 12:41:52 +02: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 12:41:52 +02:00
}).extend(switch.SWITCH_SCHEMA.schema)
MakeRestartSwitch = Application.MakeRestartSwitch
2018-04-07 01:23:03 +02:00
def to_code(config):
rhs = App.make_restart_switch(config[CONF_NAME])
2018-05-20 12:41:52 +02:00
restart = variable(MakeRestartSwitch, config[CONF_MAKE_ID], rhs)
switch.setup_switch(restart.Prestart, restart.Pmqtt, config)
2018-05-06 15:56:12 +02:00
BUILD_FLAGS = '-DUSE_RESTART_SWITCH'