I’m hoping someone might be able to help with an issue that i’m having with getting a screenshot sent as a notification sent to multiple devices when someone approaches the door.
The automation i have below works to provide the notification on screen on all devices at the time it should…however, the issue is that the screenshot timing is too early/late (not sure which, exactly… I believe it’s late) and shows just a screenshot of my front door view, with no one there.
I’ve tried both the MQTT integration and the native ring integration, neither one i can seem to get working quite right. The timing is the issue, i was hoping someone might be able to advise on where i might be going wrong .
alias: Doorbell motion popup - test
description: ""
trigger:
- platform: state
entity_id:
- binary_sensor.front_door_motion
to: "on"
condition: []
action:
- service: camera.snapshot
data:
filename: /config/www/tmp/snapshot-doorbell.jpg
target:
device_id: 7c816cd6ac0bddadec62317a6da9ac00
- service: browser_mod.popup
data:
browser_id: KitchenFire
dismissable: true
autoclose: true
title: Camera
size: fullscreen
timeout: 4000
content:
camera_view: live
type: picture-glance
entities: []
camera_image: camera.front_door
alias: Display Ring Camera on Kitchen Tablet
- service: notify.rgbmonster
data:
message: Someone is at the front door.
title: Ring Doorbell
data:
image: http://homeassistant.local:8123/local/tmp/snapshot-doorbell.jpg
duration: 5400
alias: Send Front Door Notification to RGBMonster
enabled: true
- service: notify.htpc
data:
title: Ring Doorbell
message: Someone is at the front door.
data:
image: http://homeassistant.local:8123/local/tmp/snapshot-doorbell.jpg
duration: 45
alias: Send Front Door Notification to HTPC
enabled: true
- service: notify.htpc_bedroom
data:
data:
image: http://homeassistant.local:8123/local/tmp/snapshot-doorbell.jpg
duration: 45
title: Ring Doorbell
message: Someone is at the front door.
alias: Send Front Door Notification to HTPC Bedroom
enabled: true
- delay:
hours: 0
minutes: 3
seconds: 0
milliseconds: 0
- service: delete.file
data:
file: /config/www/tmp/snapshot-doorbell.jpg
alias: snapshot cleanup
enabled: true
mode: single
Screenshot of Ring MQTT settings