• 1 Post
  • 4 Comments
Joined 1 year ago
cake
Cake day: July 9th, 2023

help-circle

  • TreeGhost@lemm.eetohomeassistant@lemmy.worldUpdating notifications
    link
    fedilink
    English
    arrow-up
    3
    ·
    edit-2
    3 months ago

    I utilize scripts for all of my notification needs. It allows me to utilize logic based around certain criteria, like this on that will only notify family members at home. If no one is home it will wait and notify the first person to show up. This also allows me to be able to quickly toggle notifications for my wife when I’m testing automations with notifications.

    alias: Notify People at Home
    fields:
      title:
        description: The title of the notification
        example: Laundry
      message:
        description: The message content
        example: Washer Finished!
    sequence:
      - if:
          - condition: state
            entity_id: zone.home
            state: "0"
        then:
          - wait_for_trigger:
              - platform: numeric_state
                entity_id: zone.home
                above: "0"
        else: []
      - parallel:
          - if:
              - condition: state
                entity_id: person.bob
                state: home
            then:
              - service: script.notify_bob
                data:
                  title: "{{ title }}"
                  message: "{{ message }}"
          - if:
              - condition: state
                entity_id: person.mary
                state: home
            then:
              - service: script.notify_mary
                data:
                  title: "{{ title }}"
                  message: "{{ message }}"
    mode: queued
    icon: mdi:exclamation-thick
    max: 10