17 lines
566 B
YAML
17 lines
566 B
YAML
- alias: 'AI overvågning'
|
|
trigger:
|
|
platform: state
|
|
entity_id: binary_sensor.indkorsel_sensor_motion
|
|
to: 'on'
|
|
conditions:
|
|
- condition: template
|
|
value_template: >-
|
|
{% set last = state_attr('automation.ai_overvagning', 'last_triggered') %}
|
|
{% set someone_home = is_state('binary_sensor.family_presence', 'on') %}
|
|
{{ not someone_home or last is none or (now() - last).total_seconds() > 900 }}
|
|
actions:
|
|
- action: script.overvaagning
|
|
metadata: {}
|
|
data: {}
|
|
mode: single
|