Hi everybody,
I’m making a blueprint, triying to trigger input actions plus a defined action.
I can make first thing:
- conditions:
- condition: trigger
id:
- This triggers input action
sequence: !input 'action'
And second thing
- conditions:
- condition: trigger
id:
- This triggers defined action
sequence:
- service: input_boolean.turn_off
data: {}
target:
entity_id: !input 'example'
However, i dont know how to combine both within the same trigger id. I’ve triyed this, but it doesn’t work…
- conditions:
- condition: trigger
id:
- This triggers defined action
sequence:
- service: input_boolean.turn_off
data: {}
target:
entity_id: !input 'example'
- !input 'action'
Thanks for your help!