#Replacing hard-coded list

1 messages · Page 1 of 1 (latest)

unreal moth
#

How would I use input text (or other) helper to replace this list so I don't have to keep editing the sensor config? {% set ignored_list = ['light.xmas_tree','sensor.pv_a_efficency','sensor.pv_b_efficency', 'sensor.uv_index'] %}

bronze socket
#

I am using a tag to ignore entities, so I don't have to update lists - just add or remove that tag

sharp jolt
#

You could use a comma separated list and {{ states('input_text.test').split(',') }}

#

Or that