#Set up alerts

1 messages · Page 1 of 1 (latest)

vapid flume
#

Hi.

Im trying to set up a simple alert to my phone but cant make it work. Could someone give me a hint? I have this in my configuration.yaml

notify:
  - name: Mikaels iPhone
  - platform: group
    name: app
    services:
      - service: notify.mobile_app_iphone_15_pro_max

alert:
  hall:
    name: Smoke Alarm from the Hall
    done_message: clear_notification
    entity_id: binary_sensor.smoke_sensor_hall_smoke_state
    state: "on"
    repeat: 1
    can_acknowledge: true
    notifiers:
      - app
    data:
      tag: smoke-detector-hall
```
cobalt flame
#

Notify groups should omit the notify. prefix

#

ex.

  - platform: group
    name: app
    services:
      - action: mobile_app_iphone_15_pro_max
#

Your first item in the notify integration isn't valid, either. You've only got a name specified

#

All of that should show up if you check your config in HA, too