From 613a91edcca28d91729edcc943d7d94cb94beae8 Mon Sep 17 00:00:00 2001 From: Marcin Jaworski Date: Tue, 29 Jan 2019 16:21:00 +0100 Subject: [PATCH] Generate variable for each custom component id (#382) * Generate variable for each custom component id * Change variable to Pvariable for custom components --- esphomeyaml/components/custom_component.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/esphomeyaml/components/custom_component.py b/esphomeyaml/components/custom_component.py index da85785fb6..81a8371983 100644 --- a/esphomeyaml/components/custom_component.py +++ b/esphomeyaml/components/custom_component.py @@ -2,7 +2,7 @@ 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 +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 @@ -25,8 +25,9 @@ def to_code(config): rhs = CustomComponentConstructor(template_) custom = variable(config[CONF_ID], rhs) - for i, comp in enumerate(config.get(CONF_COMPONENTS, [])): - setup_component(custom.get_component(i), comp) + 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'