mirror of
https://github.com/esphome/esphome.git
synced 2024-11-04 09:01:53 +01:00
19 lines
633 B
Python
19 lines
633 B
Python
import esphomeyaml.config_validation as cv
|
|
from esphomeyaml.components import switch
|
|
from esphomeyaml.const import CONF_ID, CONF_NAME
|
|
from esphomeyaml.helpers import App, variable
|
|
|
|
PLATFORM_SCHEMA = switch.PLATFORM_SCHEMA.extend({
|
|
cv.GenerateID('restart_switch'): cv.register_variable_id,
|
|
}).extend(switch.MQTT_SWITCH_SCHEMA.schema)
|
|
|
|
|
|
def to_code(config):
|
|
rhs = App.make_restart_switch(config[CONF_NAME])
|
|
restart = variable('Application::MakeRestartSwitch', config[CONF_ID], rhs)
|
|
switch.setup_switch(restart.Prestart, config)
|
|
switch.setup_mqtt_switch(restart.Pmqtt, config)
|
|
|
|
|
|
BUILD_FLAGS = '-DUSE_RESTART_SWITCH'
|