Hi there,
I have setup for Agent DVR local only and I would like to recive push message with photos when alert deceted to my HA android app.
There is all opcions what I can use in Agent DVR:
Thank you for your input.
Hi there,
I have setup for Agent DVR local only and I would like to recive push message with photos when alert deceted to my HA android app.
There is all opcions what I can use in Agent DVR:
Thank you for your input.
I use the Call URL to send a webhook to HA and then use that in an automation
Or you could send an MQTT message and have that trigger an automation
Hi,
Would you mind sharing your setting? I am not familiar with webhook or mqtt yet.
I have a HA cloud service so the webhook should be ok
Assume you know how to create a webhook ?
This automation stores the camera snapshot at time of motion, and sends it to my phone.
You’ll need to change the nabu casa address, webhook id, camera name and notify service to match yours
- alias: Front Door Motion Webhook ON
mode: restart
trigger:
- platform: webhook
webhook_id: front_door_motion
action:
- service: camera.snapshot
data:
entity_id: camera.front_door
filename: '/media/motion/Front Door {{ now().strftime("%d.%m.%Y-%H.%M.%S") }}.jpg'
- service: camera.snapshot
data:
entity_id: camera.front_door
filename: /config/www/snapshots/front_door_latest.jpg
- service: notify.mobile_app
data:
message: Motion at the front door
title: Home Automation
data:
priority: high
ttl: 0
image: "https://XXXXXXXXXXXXXXXXXXXXXX.ui.nabu.casa/local/snapshots/front_door_latest.jpg"
and add this to your confuiguration.yaml:
allowlist_external_dirs:
- /config
Thank you,
Its working nice when I call curl -X POST <the webhook url>
with my linux server.
But what should I put in Agent DVR call url: URL field?
If I just put there my public url of my webhook its nothing happening
thank you
I forgot but I actually use a batch file with this and run that on motion:
curl -d “” https://hooks.nabu.casa/WEBHOOK ID
If you look at your webhooks and click on MANAGE, it shows you the URL to use
Thank you!
How have you used MQTT?