esphome/esphome/components/switch/shutdown.py

24 lines
753 B
Python
Raw Normal View History

import voluptuous as vol
from esphome.components import switch
import esphome.config_validation as cv
from esphome.const import CONF_ID, CONF_INVERTED, CONF_NAME
from esphome.cpp_generator import Pvariable
from esphome.cpp_types import App
2018-05-06 15:56:12 +02:00
ShutdownSwitch = switch.switch_ns.class_('ShutdownSwitch', switch.Switch)
2018-06-02 22:22:20 +02:00
PLATFORM_SCHEMA = cv.nameable(switch.SWITCH_PLATFORM_SCHEMA.extend({
cv.GenerateID(): cv.declare_variable_id(ShutdownSwitch),
vol.Optional(CONF_INVERTED): cv.invalid("Shutdown switches do not support inverted mode!"),
}))
2018-05-20 12:41:52 +02:00
2018-05-06 15:56:12 +02:00
def to_code(config):
rhs = App.make_shutdown_switch(config[CONF_NAME])
shutdown = Pvariable(config[CONF_ID], rhs)
switch.setup_switch(shutdown, config)
2018-05-06 15:56:12 +02:00
BUILD_FLAGS = '-DUSE_SHUTDOWN_SWITCH'