1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-30 06:33:51 +00:00

Fix custom components

This commit is contained in:
Otto Winter
2019-02-10 14:15:20 +01:00
parent 6a76a3642e
commit 6ccb68aaf1
4 changed files with 4 additions and 4 deletions

View File

@@ -28,7 +28,7 @@ def to_code(config):
for i, conf in enumerate(config[CONF_TEXT_SENSORS]):
var = Pvariable(conf[CONF_ID], custom.get_text_sensor(i))
add(var.set_name(conf[CONF_NAME]))
text_sensor.register_text_sensor(var, conf)
text_sensor.setup_text_sensor(var, conf)
BUILD_FLAGS = '-DUSE_CUSTOM_TEXT_SENSOR'