mirror of
https://github.com/esphome/esphome.git
synced 2024-11-25 16:38:16 +01:00
Merge pull request #528 from emwap/patch-2
Further fix of custom_sensor codegen
This commit is contained in:
commit
667457989e
1 changed files with 1 additions and 1 deletions
|
@ -20,6 +20,6 @@ def to_code(config):
|
|||
rhs = CustomSensorConstructor(template_)
|
||||
var = cg.variable(config[CONF_ID], rhs)
|
||||
for i, conf in enumerate(config[CONF_SENSORS]):
|
||||
sens = cg.new_Pvariable(conf[CONF_ID], var.get_sensor(i))
|
||||
sens = cg.Pvariable(conf[CONF_ID], var.get_sensor(i))
|
||||
cg.add(sens.set_name(conf[CONF_NAME]))
|
||||
yield sensor.register_sensor(sens, conf)
|
||||
|
|
Loading…
Reference in a new issue