I have two inputs that have their own distinct entities, for example:
input:
group_1:
name: "Group 1"
selector:
entity:
multiple: true
filter:
- domain: light
group_2:
name: "Group 2"
selector:
entity:
multiple: true
filter:
- domain: light
At one point in the automation, I want to use them all together, basically equivalent to this Python example:
group_1 = [ '1','2' ]
group_2 = [ '3','4' ]
combined = group_1 + group_2 # [ '1', '2', '3', '4' ]
I tried these three ideas and (unsurprisingly) they didn't work:
wait_for_trigger:
- trigger: state
entity_id:
- !input group_1
- !input group_2
wait_for_trigger:
- trigger: state
entity_id: !input group_1 + group_2
wait_for_trigger:
- trigger: state
entity_id: !input group_1 + !input group_2
Thanks in advance for any thoughts/insight! 🫶