I am having trouble using the timer.finished event to trigger an automation. With the automation below, any timer.end event is triggering the automation instead of just the dryer_alert timer ending.
Any help would be greatly appreciated!
- alias: 'Repeat Announce Dryer Finished'
trigger:
- event_data:
entity_id: timer.dryer_alert
event_type: timer.finished
platform: event
condition:
- condition: state
entity_id: sensor.fpp_status
state: 'idle'
- condition: or
conditions:
- condition: state
entity_id: alarm_control_panel.area_001
state: 'disarmed'
- condition: state
entity_id: alarm_control_panel.area_001
state: 'armed_home'
action:
- service: mqtt.publish
data:
payload: DryerEnd
topic: ElkSpeak/falcon/player/ElkSpeak/playlist/name/set
- service: timer.start
entity_id: timer.dryer_alert