diff --git a/config_creation/main.py b/config_creation/main.py index 61ce082..f784f24 100644 --- a/config_creation/main.py +++ b/config_creation/main.py @@ -228,14 +228,14 @@ def make_sensor_exclude_list(all_devices, name_fragments): def logbook_config(all_devices): sensor_excludes = ['Helligkeit', 'Betriebsstunden', 'Verbrauch', 'Bewegungsmelder'] - exclude_list = [] + exclude_list = ['binary_sensor.updater'] exclude_list.extend(sensor_exclude_list) exclude_list.extend(make_sensor_exclude_list(all_devices, sensor_excludes)) return { 'logbook': { 'exclude': { 'entities': exclude_list, - 'domains': ['group'] + 'domains': ['group', 'automation', 'group', 'scene'] } } }