2018-12-05 21:22:06 +01:00
|
|
|
import voluptuous as vol
|
|
|
|
|
|
|
|
from esphomeyaml.components import switch
|
|
|
|
import esphomeyaml.config_validation as cv
|
2019-01-29 16:39:29 +01:00
|
|
|
from esphomeyaml.const import CONF_ID, CONF_LAMBDA, CONF_SWITCHES, CONF_NAME
|
|
|
|
from esphomeyaml.cpp_generator import process_lambda, variable, Pvariable, add
|
2018-12-05 21:22:06 +01:00
|
|
|
from esphomeyaml.cpp_types import std_vector
|
|
|
|
|
|
|
|
CustomSwitchConstructor = switch.switch_ns.class_('CustomSwitchConstructor')
|
|
|
|
|
|
|
|
PLATFORM_SCHEMA = switch.PLATFORM_SCHEMA.extend({
|
|
|
|
cv.GenerateID(): cv.declare_variable_id(CustomSwitchConstructor),
|
|
|
|
vol.Required(CONF_LAMBDA): cv.lambda_,
|
|
|
|
vol.Required(CONF_SWITCHES):
|
2018-12-18 19:31:43 +01:00
|
|
|
cv.ensure_list(switch.SWITCH_SCHEMA.extend({
|
2018-12-05 21:22:06 +01:00
|
|
|
cv.GenerateID(): cv.declare_variable_id(switch.Switch),
|
2018-12-18 19:31:43 +01:00
|
|
|
})),
|
2018-12-05 21:22:06 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
def to_code(config):
|
|
|
|
for template_ in process_lambda(config[CONF_LAMBDA], [],
|
|
|
|
return_type=std_vector.template(switch.SwitchPtr)):
|
|
|
|
yield
|
|
|
|
|
|
|
|
rhs = CustomSwitchConstructor(template_)
|
|
|
|
custom = variable(config[CONF_ID], rhs)
|
2019-01-29 16:39:29 +01:00
|
|
|
for i, conf in enumerate(config[CONF_SWITCHES]):
|
|
|
|
var = Pvariable(conf[CONF_ID], custom.get_switch(i))
|
|
|
|
add(var.set_name(conf[CONF_NAME]))
|
2019-02-10 14:15:20 +01:00
|
|
|
switch.setup_switch(var, conf)
|
2018-12-05 21:22:06 +01:00
|
|
|
|
|
|
|
|
|
|
|
BUILD_FLAGS = '-DUSE_CUSTOM_SWITCH'
|
|
|
|
|
|
|
|
|
|
|
|
def to_hass_config(data, config):
|
|
|
|
return [switch.core_to_hass_config(data, swi) for swi in config[CONF_SWITCHES]]
|