This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias: Открыть шторы после будильников Андрея и Насти | |
description: >- | |
Открывает шторы, когда 2 будильника были остановлены с 08:00 до 12:30 | |
На айфоне настроена автоматизация, которая вызывает службу нажатия на кнопку, | |
проверяется кто нажал. | |
На андроиде смотрит, что до будильника осталось < 30 секунд. | |
trigger: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
value_template: >- | |
{% set andrey_id = states.person.admin.attributes.user_id | |
%} | |
{% set nastya_id = states.person.nastya.attributes.user_id | |
%} | |
{% set who_stopped_id = | |
states.input_button.alarm_stopped.context.user_id %} | |
{% set andrey_stopped = who_stopped_id == andrey_id %} | |
{{ andrey_stopped }} |