Hello, blueprint stopped saving snapshots. Any solution?
Hit the debugger in the automation??
@swa72 try holding the notification and the snapshot/actions should show up. Iāve had this issue recently too and not sure what caused it or how to fix.
Did you find a awnser to this?
Nope.
Didnāt try again either, but will post my findings here if I do
I found the following blueprint and used it in combination with this one:
Is there a way to change the notification even more? For example the notification_icon: , or put actionable buttons.
How can I send the notification to multiple devices?
For now, I just created new automation for each device.
Hi all
Can you help, I get the notification that there is motion but I donāt get the snapshot. Any ideas what could be the problem?
The blueprint worked flawlessly for the last couple of months. I recently had a power cut and HA restarted ok. Blueprint however doesnāt work anymore. The image reads āFailed to load attachmentā Response status code was unacceptable: 404. Iām running 2022.3.1.
My bad. The latest release of HA changed the way it handles media (incl. cameras and their definition). Just had to select the camera again ā¦ duh.
Debugger says ānotify undefinedā after the call to camera.snapshot but thatās it for errors. Notfication comes through, just not the pic. I even tried moving the write/read folder. The image shows up in the folder (no matter where it is) but it doesnāt attach.
Guys, itās possible to add an āif
statement to blueprints?
I would like to use this blueprint, but only if my device is not at home (Iām away).
Iām sure it could be added to the blueprint but in the mean time you could have another automation that toggles the camera snapshot automation based on your presence. Check out call services automation.turn_off
/ .turn_on
or .toggle
Hi,
how can add a wait action to the end of the blueprint?
When there is motion it is always send notifications, but it is unnecessary, it is enough every 5 minutes.
Thanks!
Is it possible to add ttl: 0 and priority: high to the ādata:ā tab? To get the notification quicker to the phone, even when the phone or app is active.
Iām not skilled in the coding, but I was wondering if it could be something like this:
data: >
{% set android_data = {"image": "%s"} | format(snapshot_access_file_path) %}
{% set ios_data = {"attachment": {"url": "%s", "content_type": "JPEG"}} | format(snapshot_access_file_path) %}
{{ ios_data if is_ios else android_data }}
ttl: 0
priority: high
Is it possible to add a delay/throttle. To prevent the flood of msgās. Like 1 msg/10sec?
Did anyone solve this problem ?