Timer event broken?

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

Look at the examples:

  trigger:
  - platform: event
    event_type: timer.finished
    event_data:
      entity_id: timer.test

id on your code just give an id to the trigger. Functionally, you’re triggering on each and every timer being finished.

oh now I see it, thanks seams to work