initial push

This commit is contained in:
CeeWeasel
2024-04-14 14:08:56 -04:00
commit 53bf393d14
1111 changed files with 71730 additions and 0 deletions
@@ -0,0 +1,20 @@
alias: Ebin travel sensor
mode: restart
sequence:
- service: input_text.set_value
data_template:
entity_id: input_text.person_ebin
value: >-
{% if is_state('input_boolean.ebin_home', 'on') %}
{% if is_state('input_boolean.ebin_is_awake','off') %}
Sleeping
{% elif is_state('input_boolean.ebin_in_bed','on') %}
In bed
{% else %}
{{ states("input_select.ebin_status_dropdown") }}
{% endif %}
{% elif is_state('group.person_ebin', 'home') and is_state('input_boolean.ebin_home', 'off') %}
Near home ({{ states('input_select.ebin_status_dropdown') }})
{% else %}
Away
{% endif %}