Hi all.
I’ve been trying to get iOS to open up a specific dashboard when I tap the notification for months. I just can’t figure it out. Below is one notification I’ve tried it with. The url for the dashboard is:
http://homeassistant.local:8123/lovelace/8
I have tried referencing it as
/lovelace/8
lovelace/8
8
and probably a lot of other things I don’t remember any more… What’s the right format??
Here’s the automation:
- id: person_in_front
alias: Person In Front
initial_state: 'true'
trigger:
platform: numeric_state
entity_id: sensor.front_person
above: 0
condition:
condition: or
conditions:
- condition: time
after: '23:00:00'
before: '7:00:00'
- condition: state
entity_id: sensor.alarm_state_3_motion_sensors
state: 'armed_away'
for:
minutes: 1
- condition: state
entity_id: sensor.alarm_state_3_motion_sensors
state: 'triggered'
action:
- service: notify.mobile_app_sean_s_iphone_12
data:
title: "House Watch"
message: "There's a Person in Front of the House"
data:
push:
sound:
name: "Update.caf"
critical: 1
volume: 1.0
category: camera
thread-id: "security"
entity_id: camera.front_person
clickAction: /lovelace/8
- delay:
minutes: 10
Would love to hear from someone who’s actually made this work correctly.