1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-15 01:32:19 +01:00

Fix scheduler first execution (#798)

* Fix scheduler first execution not immediately

* Also update sensor filters
This commit is contained in:
Otto Winter
2019-10-24 21:24:57 +02:00
committed by GitHub
parent 59c5956f93
commit d62ef35860
2 changed files with 3 additions and 3 deletions

View File

@@ -259,7 +259,7 @@ def setup_sensor_core_(var, config):
if CONF_ACCURACY_DECIMALS in config:
cg.add(var.set_accuracy_decimals(config[CONF_ACCURACY_DECIMALS]))
cg.add(var.set_force_update(config[CONF_FORCE_UPDATE]))
if CONF_FILTERS in config:
if config.get(CONF_FILTERS): # must exist and not be empty
filters = yield build_filters(config[CONF_FILTERS])
cg.add(var.set_filters(filters))