Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
f176e3b867
|
|||
|
1b52cc31a8
|
|||
|
8993196366
|
|||
|
210434e4ad
|
|||
|
e37ac9d504
|
@@ -1 +1 @@
|
||||
2025.11.3
|
||||
2025.12.3
|
||||
@@ -4659,7 +4659,7 @@
|
||||
id: night-notify
|
||||
alias: Night Notify
|
||||
trigger: time
|
||||
enabled: false
|
||||
enabled: true
|
||||
- entity_id:
|
||||
- input_boolean.kallen_morning_meds_taken
|
||||
to: 'on'
|
||||
@@ -4674,7 +4674,7 @@
|
||||
from: 'off'
|
||||
to: 'on'
|
||||
trigger: state
|
||||
enabled: false
|
||||
enabled: true
|
||||
conditions:
|
||||
- condition: state
|
||||
entity_id: input_boolean.kallen_overnight
|
||||
|
||||
@@ -90,8 +90,8 @@
|
||||
{% elif state_attr(team,'opponent_winner') == true %}
|
||||
The {{ state_attr(team,'friendly_name') }} lost their game today against {% if state_attr(team,'league') != 'NCAAF'%}the{% endif %} {{ opponent_name }} by a score of {{ state_attr(team,'opponent_score') }} to {{ state_attr(team,'team_score') }}.
|
||||
{% endif %}
|
||||
{% if state_attr(team,'clock') not in ['postponed','Postponed'] %}
|
||||
This brings their record to {{ state_attr(team,'team_record') | replace("-"," and ") }} on the season.
|
||||
{% if state_attr(team,'clock') not in ['postponed','Postponed'] and state_attr(team,'team_record') != None %}
|
||||
This brings their record to {{ state_attr(team,'team_record') | replace("-"," and ") }} on the season.
|
||||
{% endif %}
|
||||
{% elif yday == date %}
|
||||
{% if state_attr(team,'clock') in ['postponed','Postponed'] %}
|
||||
@@ -171,6 +171,15 @@
|
||||
{% if is_state('binary_sensor.minnesota_wild_inhibit','off') %}
|
||||
{{ sports_pregame('sensor.minnesota_wild') }}
|
||||
{% endif %}
|
||||
{% if is_state('binary_sensor.michigan_wolverines_hockey','off') %}
|
||||
{{ sports_pregame('sensor.michigan_wolverines_hockey') }}
|
||||
{% endif %}
|
||||
{% if is_state('binary_sensor.minnesota_golden_gophers_hockey','off') %}
|
||||
{{ sports_pregame('sensor.minnesota_golden_gophers_hockey') }}
|
||||
{% endif %}
|
||||
{% if is_state('binary_sensor.minnesota_state_mavericks_hockey','off') %}
|
||||
{{ sports_pregame('sensor.minnesota_state_mavericks_hockey') }}
|
||||
{% endif %}
|
||||
{% elif time == 'main' %}
|
||||
{% if is_state('binary_sensor.michigan_wolverines_inhibit','off') %}
|
||||
{{ sports_main('sensor.michigan_wolverines') }}
|
||||
@@ -199,6 +208,15 @@
|
||||
{% if is_state('binary_sensor.minnesota_wild_inhibit','off') %}
|
||||
{{ sports_main('sensor.minnesota_wild') }}
|
||||
{% endif %}
|
||||
{% if is_state('binary_sensor.michigan_wolverines_hockey','off') %}
|
||||
{{ sports_main('sensor.michigan_wolverines_hockey') }}
|
||||
{% endif %}
|
||||
{% if is_state('binary_sensor.minnesota_golden_gophers_hockey','off') %}
|
||||
{{ sports_main('sensor.minnesota_golden_gophers_hockey') }}
|
||||
{% endif %}
|
||||
{% if is_state('binary_sensor.minnesota_state_mavericks_hockey','off') %}
|
||||
{{ sports_main('sensor.minnesota_state_mavericks_hockey') }}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endmacro %}
|
||||
{{ cleanup(data()) }}
|
||||
|
||||
@@ -142,6 +142,36 @@ template:
|
||||
state: >
|
||||
{% from 'sports.jinja' import sports_today %}
|
||||
{{ sports_today('sensor.minnesota_wild') }}
|
||||
- name: Michigan Wolverines Hockey Inhibit
|
||||
unique_id: 8ecd46d5-64c2-49f5-bc8d-d88593273d92
|
||||
state: >
|
||||
{% from 'sports.jinja' import sports_inhibit %}
|
||||
{{ sports_inhibit('sensor.michigan_wolverines_hockey') }}
|
||||
- name: Michigan Wolverines Hockey Event Today
|
||||
unique_id: 551fdae5-e18c-4117-b3ba-df864068b13d
|
||||
state: >
|
||||
{% from 'sports.jinja' import sports_today %}
|
||||
{{ sports_today('sensor.michigan_wolverines_hockey') }}
|
||||
- name: Minnesota Golden Gophers Hockey Inhibit
|
||||
unique_id: 87653f3a-203c-4dbf-87e8-70bcacf6eb22
|
||||
state: >
|
||||
{% from 'sports.jinja' import sports_inhibit %}
|
||||
{{ sports_inhibit('sensor.minnesota_golden_gophers_hockey') }}
|
||||
- name: Minnesota Golden Gophers Hockey Event Today
|
||||
unique_id: 1f4ff7eb-cbc9-4c81-a5c9-6523b5fb52ff
|
||||
state: >
|
||||
{% from 'sports.jinja' import sports_today %}
|
||||
{{ sports_today('sensor.minnesota_golden_gophers_hockey') }}
|
||||
- name: Minnesota State Mavericks Hockey Inhibit
|
||||
unique_id: bd15870d-bccb-4c52-9690-473c31bb4090
|
||||
state: >
|
||||
{% from 'sports.jinja' import sports_inhibit %}
|
||||
{{ sports_inhibit('sensor.minnesota_state_mavericks_hockey') }}
|
||||
- name: Minnesota State Mavericks Hockey Event Today
|
||||
unique_id: e403be15-3ff2-47b1-8398-70f8ccb65026
|
||||
state: >
|
||||
{% from 'sports.jinja' import sports_today %}
|
||||
{{ sports_today('sensor.minnesota_state_mavericks_hockey') }}
|
||||
|
||||
intent_script:
|
||||
SportsScore:
|
||||
|
||||
Reference in New Issue
Block a user