Files
fresh-home/automations/people/adults_away_something_open.yaml
T
2025-12-06 09:12:49 -05:00

27 lines
1.2 KiB
YAML

alias: "Adults away something open"
id: automation_adults_away_something_open
mode: restart
trigger:
- platform: state
entity_id: input_boolean.adults_away
from: "off"
to: "on"
condition:
- condition: state
entity_id: binary_sensor.something_open
state: "on"
- condition: state
entity_id: input_boolean.home_occupied
state: "off"
action:
# Notify the last person to leave
- action: notify.mobile_app_pixel_7
data:
message: >-
{% if as_timestamp(states.input_boolean.kristy_home.last_updated) > as_timestamp(states.input_boolean.clint_home.last_updated) %}
The following are open: {{ dict((states|selectattr('entity_id', 'in', state_attr('group.my_exterior_windows', 'entity_id') + state_attr('binary_sensor.exterior_doors', 'entity_id'))|list)|groupby('state'))['on']|map(attribute='name')|list|join(', ') }}
{% else %}
The following are open: {{ dict((states|selectattr('entity_id', 'in', state_attr('group.my_exterior_windows', 'entity_id') + state_attr('binary_sensor.exterior_doors', 'entity_id'))|list)|groupby('state'))['on']|map(attribute='name')|list|join(', ') }}
{% endif %}