Need help with automation delay

hello, i have a simple automation to send out HTML5 notifications every 15 mins when a switch is on. this works.

- alias: 'Pump Notify'
  trigger:
  - platform: time
    minutes: '/15'
    seconds: 00
  condition:
    condition: state
    entity_id: switch.pump
    state: 'on'
  action:
    service: notify.notify
    data_template:
      title: "Reminder"
      message: "The Pump is ON"

however, i want to set it up in a way that there are no notifications for the first hour and then a notification every 15 mins. is there a simple way to do that? the only other way i can think of is creating another automation with state trigger which will enable this above automation after a delay of 60 mins.

Use alert…

1 Like

thank you!

1 Like