For anyone who’s interested, here is the Automation I’ve created for my Reolink doorbell.
When someone presses the bell, it does 3 things (in parallel, so that each occur as quickly as possible):
- Notification to my phone via the Companion app (I use Android, might need minor tweaks for iOS)
- Toast message on my LG TV
- Starts a Routine on my Alexa devices (I use Routines as I found this is easier to modify the target Echo device(s) when I add any more via the Alexa app)
alias: Front Door Bell Pressed
description: "Provides various notifications when the Reolink doorbell button is pressed"
trigger:
- type: turned_on
platform: device
device_id: [redacted]
entity_id: binary_sensor.front_door_visitor
domain: binary_sensor
condition: []
action:
- parallel:
- service: notify.mobile_app_garry_phone
data:
message: Someone is at the front door
data:
image: /api/camera_proxy/camera.front_door_snapshots
ttl: 0
priority: high
- service: media_player.play_media
target:
entity_id: media_player.lounge_echo_dot
data:
media_content_id: someone is at the front door
media_content_type: routine
metadata: {}
enabled: true
- service: notify.lg_lounge
data:
message: Someone is at the front door
enabled: true
mode: single