I’m trying to set up vibrationPattern in a channel, but it doesn’t do that.
Looking in settings under the apps notifications I don’t see my channel either.
I see two channels Default Channel and General. Notifications seems to flow to General.
I’ve built this payload in node-red:
Look at the provided examples and the parent > child relationship with how they nest under data there is only one data element after the message and topic which is where all the rest of the notification options go.
It’s not the structure I ask about, but the text says:
For Android these notifications are designed to show up on the phone immediately. By default they do not override Do Not Disturb settings, if you would like to override this you will need to use notification channels. They also do not make the notification sound when the phone is muted.
But the example below it then shows
automations:
- alias: 'Fire Detected'
trigger:
- platform: state
entity_id: sensor.smoke_alarm
to: 'smoke'
action:
- service: notify.mobile_app_<your_device_id_here>
data:
title: "Wake up!"
message: "The house is on fire and the cat's stuck in the dryer!"
data:
ttl: 0
priority: high
I think you misunderstood that part. Waking up the phone is completely different than overriding the Do Not Disturb setting on your phone. What we mean here is that if your device is in DND mode and you are not using a channel that was set up to override it then it won’t be delivered timely. These are 2 separate features that could work together if you need them to. You probably want to test the combination to see what works for you