I have a nest cam at my front door, down the path I have a motion sensor, when the front path motion sensor is triggered it takes around 10 seconds to reach the front door. I have set up an automation to display that camara on a Google hub in the living room, here’s the problem.
I am not getting a live stream, the display doesn’t give me the camera live or even a few seconds delay, it gives me the last 15 seconds or so, I would expect to see the person at the door or, at least, approaching. What I actually get is an empty path, then you see the person entering the gateway and coming up the path.
Is this a nest issue or my automation.
alias: Activity at front door
description: ""
trigger:
- type: motion
platform: device
device_id: e40521b4c47205345728badacxxxxxxx
entity_id: 855949765a3fdfe4148ca97d0bxxxxxxx
domain: binary_sensor
id: cam-needed
- type: no_motion
platform: device
device_id: e40521b4c47205345728badac9xxxxxx
entity_id: 855949765a3fdfe4148ca97d0bxxxxx
domain: binary_sensor
id: cam-not-needed
for:
hours: 0
minutes: 1
seconds: 0
condition:
- condition: time
after: "07:00:00"
before: "23:00:00"
weekday:
- mon
- tue
- wed
- thu
- fri
- sat
- sun
action:
- choose:
- conditions:
- condition: trigger
id:
- cam-needed
sequence:
- action: camera.play_stream
metadata: {}
data:
format: hls
media_player: media_player.living_room_display
target:
device_id: 3d119382868da9813d889a0b2xxxxx
- conditions:
- condition: trigger
id:
- cam-not-needed
sequence:
- action: media_player.turn_off
metadata: {}
data: {}
target:
device_id: c9e460efea693bf3d4fb592517xxxxx
mode: single
Thanks in advance …