There seems to be a bug with templates where it doesn’t pick up the defaults for file and archive file. Please copy those values from the blueprint.
Blueprint Code
blueprint:
name: Save a camera snapshot when motion is detected
description: Save a camera snapshot with archive when motion is detected
domain: automation
source_url: https://gist.github.com/niemyjski/08c566a4fe64fb2e70998ee4f38c9d1e
input:
motion_sensor:
name: Motion sensor
description: The sensor wich triggers the snapshot creation
selector:
entity:
domain: binary_sensor
device_class: motion
camera:
name: Camera
description: The camera which creates the snapshot
selector:
entity:
domain: camera
file:
name: File Path
description: The file path to store the most current snapshot.
default: '/media/CAMERA_NAME/last_motion.jpg'
archive_file:
name: Archive File Path
description: The file path to store the snapshot in an archive folder.
default: '/media/CAMERA_NAME/archive/motion_{{ now().strftime("%Y%m%d-%H%M%S") }}.jpg'
delay:
name: Delay (Optional)
description: Wait before creating camera snapshot
default: ''
selector:
number:
min: 0.0
max: 60.0
unit_of_measurement: seconds
mode: slider
step: 1.0
trigger:
platform: state
entity_id: !input motion_sensor
from: 'off'
to: 'on'
variables:
motion_sensor: !input 'motion_sensor'
camera: !input 'camera'
file: !input file
archive_file: !input archive_file
delay: !input 'delay'
action:
- delay: '{{ delay }}'
- service: camera.snapshot
entity_id: !input 'camera'
data:
filename: !input file
- service: camera.snapshot
entity_id: !input 'camera'
data:
filename: !input archive_file
Excellent !
Thanks @niemyjski for your sharing !
It works perfectly and is super simple!
I have a question: I would like to take a sequence of photos.
For example 4 pictures during the next minute after motion detection.
How can I modify the Blueprint to get such a sequence?
Thanks for your feedback
Awesome !
Thanks for the Quick Reply !
Also, if I want to put a condition to trigger the snapshot, what would you advise?
Directly put this condition in the automation YAML ?
Thanks for your help
What kind of condition do you want to put? You’d probably have to modify the blueprint. I thought they were going to allow you to override a conditions section of a blueprint but I’m not sure if this is still the plan.
I have the home assistant running on container. I’ve already given permission both on the local folder (/usr/share/hassio/media) and on the container that runs the home assistant (/media) and I have the same problem. Where would it be necessary to give permission?
and in the logs I get
" Logger: homeassistant.components.automation.new_automation
Source: helpers/script.py:1382
Integration: Automation (documentation, issues)
First occurred: 3:34:03 PM (2 occurrences)
Last logged: 3:34:54 PM
New Automation: Error rendering New Automation delay template: offset should be format ‘HH:MM’, ‘HH:MM:SS’ or ‘HH:MM:SS.F’"