"Solved" Notify mobile app 2.0?

Last night I cleaned up my devices in HA and upgraded to 0.94.1

Since then I no longer get a sound when a notification is sent to my iphone. Seen in the docs that sounds are disabled by default with the 2.0 mobile app.

Is anyone else seeing the same and know how to fix this when sending notifications from Node Red?

You can set sounds to use default… I have posted the yaml before.

notify:
  - platform: group
    name: David iOS Notify
    services:
      - service: mobile_app_davids_iphone
        data:
          data:
            push:
              sound:
                name: default
      - service: mobile_app_davids_ipad
        data:
          data:
            push:
              sound:
                name: default
1 Like

Thanks David but how do I do that in Node Red?

I have no idea but I don’t think it’s node-red specific… That i just setting up a notification group and specifying the default sound. Otherwise no sound for any notification from any source.

If you set a group in notify.yaml (or the notify config) it will set it as default for your device:

#notify:
  - platform: group
    name: Mark iOS Notify
    services:
      - service: mobile_app_mark_iphone_8_plus
        data:
          data:
            push:
              sound:
                name: default

Then you can use it as before in NR.

mb

1 Like

Lol Great minds

Haha yeah but you were slow lol.

1 Like

@markbajaj and @DavidFW1960 Thanks great minds.