I’m trying to set up the motion (person) detection on my Google Nest Doorbell (battery) camera to trigger my dashboard to show a live feed.
I have a tablet with the HA dashboard near my front door. I’d like to display a feed from the camera on the dashboard, but my doorbell is battery operated, a constant live feed would drain the battery. I have a picture entity that shows a live feed of the doorbell in the dashboard presently, and have tested using the motion detection to trigger toggling the light:
alias: Front camera test
description: ""
triggers:
- device_id: redacted_nest_camera_id
domain: nest
type: camera_person
trigger: device
conditions: []
actions:
- action: light.toggle
metadata: {}
data: {}
target:
device_id: redacted_front_light_id
mode: single
But I can’t figure out how to implement the desired solution (I’m pretty new to home assistant).