Android Override Silenced Mode

I’m attempting to use this as a find phone setup on my dashboard.

If the phone is silenced or on vibrate it doesn’t work, it only works if it’s on sound.

It’s my understanding per the docs for Android that it is expected to override silent/vibrate mode with the following configuration:

- type: custom:mushroom-template-card
  primary: Find Phone
  secondary: ''
  icon: mdi:target
  layout: horizontal
  icon_color: red
  tap_action:
    action: call-service
    service: notify.mobile_app_daniels_s21
    data:
      message: Ringing phone...
      title: Find Phone
      data:
        ttl: 0
        priority: high
        tag: Find
        importance: high
        channel: alarm_stream
    target: {}

known issue for some Samsung devices: https://github.com/home-assistant/android/issues/1465

Edit: your best bet is to work around the issue and use notification commands to turn on and off DND, adjust ringer mode or change the volume level

1 Like

Perfect thank you.