mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 09:17:46 +01:00
e3f7e0d14a
* Generate variable for each custom component id * Change variable to Pvariable for custom components
33 lines
1.2 KiB
Python
33 lines
1.2 KiB
Python
import voluptuous as vol
|
|
|
|
import esphomeyaml.config_validation as cv
|
|
from esphomeyaml.const import CONF_ID, CONF_LAMBDA, CONF_COMPONENTS
|
|
from esphomeyaml.cpp_generator import process_lambda, variable, Pvariable
|
|
from esphomeyaml.cpp_helpers import setup_component
|
|
from esphomeyaml.cpp_types import Component, ComponentPtr, esphomelib_ns, std_vector
|
|
|
|
CustomComponentConstructor = esphomelib_ns.class_('CustomComponentConstructor')
|
|
MULTI_CONF = True
|
|
|
|
CONFIG_SCHEMA = vol.Schema({
|
|
cv.GenerateID(): cv.declare_variable_id(CustomComponentConstructor),
|
|
vol.Required(CONF_LAMBDA): cv.lambda_,
|
|
vol.Optional(CONF_COMPONENTS): cv.ensure_list(vol.Schema({
|
|
cv.GenerateID(): cv.declare_variable_id(Component)
|
|
}).extend(cv.COMPONENT_SCHEMA.schema)),
|
|
})
|
|
|
|
|
|
def to_code(config):
|
|
for template_ in process_lambda(config[CONF_LAMBDA], [],
|
|
return_type=std_vector.template(ComponentPtr)):
|
|
yield
|
|
|
|
rhs = CustomComponentConstructor(template_)
|
|
custom = variable(config[CONF_ID], rhs)
|
|
for i, comp_config in enumerate(config.get(CONF_COMPONENTS, [])):
|
|
comp = Pvariable(comp_config[CONF_ID], custom.get_component(i))
|
|
setup_component(comp, comp_config)
|
|
|
|
|
|
BUILD_FLAGS = '-DUSE_CUSTOM_COMPONENT'
|