Hi,
just made few automations with use of timer. but it seams that the action “timer.finished” for specific ID doesn’t work as it tigers all timer-event related automations that I’ve created.
My example:
alias: timer 1 test
description: ''
trigger:
- platform: event
event_type: timer.finished
id: timer.test
condition: []
action:
- service: notify.mobile_app_minca_iphone
data:
title: timer 1 done
message: test 1
mode: single
2nd is:
alias: timer 2 test
description: ''
trigger:
- platform: event
event_type: timer.finished
id: timer.2test
condition: []
action:
- service: notify.mobile_app_minca_iphone
data:
title: timer 2 done
message: test 2
- type: turn_off
device_id: blablbla
entity_id: switch.tasmota_5v
domain: switch
mode: single
Then when the 1st timer is finished it triggers both automations at once…
any tips?
thx