1
0
Fork 0

Compare commits

...

3 commits

3 changed files with 69 additions and 16 deletions

View file

@ -37,10 +37,27 @@
- platform: state
entity_id: sensor.octoprint_job_percentage
to: '100.0'
- platform: state
entity_id:
- sensor.octoprint_target_bed_temp
to: "0"
action:
- service: notify.mobile_app_iphone
data:
message: 3D printer has finished
entity_id: camera.3d_printer
- service: camera.snapshot
data:
filename: /config/www/cctv/3d_printer.jpg
target:
entity_id: camera.hallway
- service: notify.home_assistant
data:
message: "3D Printer has finished"
target: [ "1070521797688180796" ]
data:
images:
- "/config/www/cctv/3d_printer.jpg"
- id: 3dprinter-button
alias: '[3D Printer] button'

View file

@ -23,14 +23,7 @@
action:
- service: alarm_control_panel.alarm_trigger
entity_id: alarm_control_panel.home_alarm
- service: notify.mobile_app_iphone
data:
title: "ALARM! Pending for disarm"
message: >
{{ state_attr(trigger.entity_id, 'friendly_name') }}
data:
entity_id: camera.hallway
url: "/lovelace-tablet/security"
- service: script.cctv_notify_hallway
- id: alarm-away-living-roomn
alias: '[Alarm] Trigger alarm when not at home (Living Room)'
@ -71,14 +64,7 @@
action:
- service: alarm_control_panel.alarm_trigger
entity_id: alarm_control_panel.home_alarm
- service: notify.mobile_app_iphone
data:
title: "ALARM! Pending for disarm"
message: >
{{ state_attr(trigger.entity_id, 'friendly_name') }}
data:
entity_id: camera.living_room
url: "/lovelace-tablet/security"
- service: script.cctv_notify_hallway
- id: alarm-away-remaining
alias: '[Alarm] Trigger alarm when not at home'

View file

@ -31,3 +31,53 @@ cctv_off:
- switch.hallway_recordings
- switch.hallway_snapshots
- switch.hallway_detect
cctv_notify_hallway:
alias: CCTV notify hallway
sequence:
- service: notify.mobile_app_iphone
data:
title: "ALARM! Pending for disarm"
message: >
{{ state_attr(trigger.entity_id, 'friendly_name') }}
data:
entity_id: camera.hallway
url: "/lovelace-tablet/security"
- service: camera.snapshot
data:
filename: /config/www/cctv/hallway.jpg
target:
entity_id: camera.hallway
- service: notify.home_assistant
data:
title: "ALARM. Pending to disarm"
message: "Motion in hallway"
target: [ "1070507369164984372" ]
data:
images:
- "/config/www/cctv/hallway.jpg"
cctv_notify_living_room:
alias: CCTV notify living room
sequence:
- service: notify.mobile_app_iphone
data:
title: "ALARM! Pending for disarm"
message: >
{{ state_attr(trigger.entity_id, 'friendly_name') }}
data:
entity_id: camera.living_room
url: "/lovelace-tablet/security"
- service: camera.snapshot
data:
filename: /config/www/cctv/living_room.jpg
target:
entity_id: camera.hallway
- service: notify.home_assistant
data:
title: "ALARM. Pending to disarm"
message: "Motion in living room"
target: [ "1070507369164984372" ]
data:
images:
- "/config/www/cctv/living_room.jpg"