Untitled

 avatar
unknown
plain_text
2 years ago
777 B
8
Indexable
alias: Alarm Tab Timer Loop
description: ""
trigger:
  - platform: homeassistant
    event: start
    id: HA Started
  - platform: event
    event_type: timer.finished
    event_data:
      entity_id: timer.alarm_tab_timer
    id: Timer Finished
condition: []
action:
  - choose:
      - conditions:
          - condition: trigger
            id: HA Started
        sequence:
          - service: timer.start
            data:
              duration: 0
            target:
              entity_id: timer.alarm_tab_timer
      - conditions:
          - condition: trigger
            id: Timer Finished
        sequence:
          - service: timer.start
            data:
              duration: 0
            target:
              entity_id: timer.alarm_tab_timer
mode: single
Editor is loading...