1
0

Add camera snapshot

This commit is contained in:
Przemek Grondek 2023-02-07 14:10:00 +01:00
parent 53b410cf80
commit 18543c268c
4 changed files with 64 additions and 9 deletions

View File

@ -113,7 +113,7 @@
data:
filename: /config/www/cctv/living_room.jpg
target:
entity_id: camera.hallway
entity_id: camera.living_room
- service: notify.home_assistant
data:
message: >
@ -161,9 +161,9 @@
entity_id: alarm_control_panel.home_alarm
- service: camera.snapshot
data:
filename: /config/www/cctv/living_room.jpg
filename: /config/www/cctv/bedroom.jpg
target:
entity_id: camera.hallway
entity_id: camera.bedroom
- service: notify.home_assistant
data:
message: >
@ -181,6 +181,14 @@
filename: /config/www/cctv/bedroom.mp4
target:
entity_id: camera.bedroom
- service: notify.home_assistant
data:
message: >
Motion recording
target: [ "1070507369164984372" ]
data:
images:
- "/config/www/cctv/bedroom.mp4"
- id: alarm-away-remaining
alias: '[Alarm] Trigger alarm when not at home'

View File

@ -23,7 +23,7 @@
action:
- service: notify.mobile_app_iphone
data:
title: "Leak detection"
title: "Leak detection ⚠️"
message: >
Leak detected: {{ state_attr(trigger.entity_id, 'friendly_name') }}
data:
@ -39,6 +39,7 @@
{{ state_attr(trigger.entity_id, 'friendly_name') }}
@everyone
target: [ "1071801716070154240" ]
- service: script.cctv_snapshot_all
- id: info-leak-cleared-notice
alias: '[INFO] Leak cleared notice'
@ -65,13 +66,13 @@
action:
- service: notify.mobile_app_iphone
data:
title: "Leak cleared"
title: "Leak cleared"
message: >
Leak cleared: {{ state_attr(trigger.entity_id, 'friendly_name') }}
- service: notify.home_assistant
data:
message: >
Leak cleared! ✅
Leak cleared! ✅
{{ state_attr(trigger.entity_id, 'friendly_name') }}
target: [ "1071801716070154240" ]
@ -88,7 +89,7 @@
action:
- service: notify.mobile_app_iphone
data:
title: "Smoke detection"
title: "Smoke detection ⚠️"
message: >
Smoke detected: {{ state_attr(trigger.entity_id, 'friendly_name') }}
data:
@ -104,6 +105,7 @@
{{ state_attr(trigger.entity_id, 'friendly_name') }}
@everyone
target: [ "1071801716070154240" ]
- service: script.cctv_snapshot_all
- id: info-smoke-cleared-notice
alias: '[INFO] Smoke notice'
@ -118,7 +120,7 @@
action:
- service: notify.mobile_app_iphone
data:
title: "Smoke cleared"
title: "Smoke cleared"
message: >
Smoke cleared: {{ state_attr(trigger.entity_id, 'friendly_name') }}
- service: notify.home_assistant
@ -127,3 +129,4 @@
Smoke cleared! ✅
{{ state_attr(trigger.entity_id, 'friendly_name') }}
target: [ "1071801716070154240" ]
- service: script.cctv_snapshot_all

View File

@ -35,7 +35,7 @@
- service: notify.home_assistant
data:
message: >
UPS Alert ✅
UPS Alert ✅
UPS is charging
@everyone
target: [ "1071801716070154240" ]

View File

@ -1,5 +1,6 @@
cctv_on:
alias: CCTV on
icon: mdi:cctv
sequence:
- service: switch.turn_on
target:
@ -21,6 +22,7 @@ cctv_on:
cctv_off:
alias: CCTV off
icon: mdi:cctv-off
sequence:
- service: switch.turn_off
target:
@ -35,3 +37,45 @@ cctv_off:
- switch.hallway_recordings
- switch.hallway_snapshots
- switch.hallway_detect
cctv_snapshot_all:
alias: CCTV snapshot all
icon: mdi:cctv
sequence:
- service: camera.snapshot
data:
filename: /config/www/cctv/hallway.jpg
target:
entity_id: camera.hallway
- service: camera.snapshot
data:
filename: /config/www/cctv/living_room.jpg
target:
entity_id: camera.living_room
- service: camera.snapshot
data:
filename: /config/www/cctv/bedroom.jpg
target:
entity_id: camera.bedroom
- service: camera.snapshot
data:
filename: /config/www/cctv/3d_printer.jpg
target:
entity_id: camera.3d_printer
- service: camera.snapshot
data:
filename: /config/www/cctv/balcony.jpg
target:
entity_id: camera.balcony
- service: notify.home_assistant
data:
message: >
All camera snapshot
target: [ "1070507369164984372" ]
data:
images:
- "/config/www/cctv/hallway.jpg"
- "/config/www/cctv/living_room.jpg"
- "/config/www/cctv/bedroom.jpg"
- "/config/www/cctv/3d_printer.jpg"
- "/config/www/cctv/balcony.jpg"