mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 09:17:46 +01:00
37 lines
1.2 KiB
Python
37 lines
1.2 KiB
Python
|
import voluptuous as vol
|
||
|
|
||
|
from esphomeyaml.components import switch
|
||
|
import esphomeyaml.config_validation as cv
|
||
|
from esphomeyaml.const import CONF_ID, CONF_LAMBDA, CONF_SWITCHES
|
||
|
from esphomeyaml.cpp_generator import process_lambda, variable
|
||
|
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):
|
||
|
vol.All(cv.ensure_list, [switch.SWITCH_SCHEMA.extend({
|
||
|
cv.GenerateID(): cv.declare_variable_id(switch.Switch),
|
||
|
})]),
|
||
|
})
|
||
|
|
||
|
|
||
|
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)
|
||
|
for i, sens in enumerate(config[CONF_SWITCHES]):
|
||
|
switch.register_switch(custom.get_switch(i), sens)
|
||
|
|
||
|
|
||
|
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]]
|