Compare commits

...

12 Commits

8 changed files with 34 additions and 19 deletions

View File

@@ -1 +1 @@
2026.2.1
2026.3.1

1
.gitignore vendored
View File

@@ -4,6 +4,7 @@
/.google.token
/.ssh
/.codegpt
/.cache
# ignore some directories.
/www/*

View File

@@ -6219,6 +6219,7 @@
- input_boolean.tina_morning_meds_taken
- input_boolean.tina_night_meds_taken
alias: Reset Tina meds taken switches
enabled: false
mode: restart
- id: '1747130058536'
alias: Shower Mode Auto Off

View File

@@ -108,6 +108,7 @@ recorder:
- sensor.*_count
- sensor.*memory_available*
- sensor.*memory_used*
- sensor.*memory_usage*
- sensor.*cpu_usage
- sensor.*cpu_temperature
- sensor.*gpu_temperature
@@ -124,6 +125,11 @@ recorder:
- sensor.*_monitored_url
- sensor.*_response_time
- sensor.adguard*
- sensor.*iphone_info
- sensor.*ipad_info
- sensor.*airpods_info
- sensor.*airpods_pro_info
- sensor.*response_time*
entities:
- sensor.avg_ping
- sensor.max_ping
@@ -164,14 +170,7 @@ logger:
homeassistant.core: fatal
influxdb:
api_version: 2
host: 192.168.1.254
port: 8086
max_retries: 3
ssl: false
organization: !secret influxdb_org
token: !secret influxdb_token
bucket: home_assistant
default_measurement: state
tags:
source: HA
@@ -291,6 +290,7 @@ influxdb:
- sensor.*_response_time
- sensor.*_status
- sensor.adguard*
- sensor.*response_time*
entities:
- media_player.living_room_tv
- media_player.basement_tv
@@ -469,6 +469,7 @@ prometheus:
- sensor.*_response_time
- sensor.*_status
- sensor.adguard*
- sensor.*response_time*
include_entities:
- media_player.living_room_tv
- media_player.basement_tv

View File

@@ -65,7 +65,7 @@ sensor:
hours: 24
- platform: history_stats
name: Emma A/C Compressor Time
entity_id: binary_sensor.emma_aircon_compressor
entity_id: binary_sensor.emma_bedroom_aircon_compressor
state: 'on'
type: time
end: '{{ now() }}'
@@ -73,7 +73,7 @@ sensor:
hours: 24
- platform: history_stats
name: Emma A/C Fan Time
entity_id: binary_sensor.emma_aircon_fan
entity_id: binary_sensor.emma_bedroom_aircon_fan
state: 'on'
type: time
end: '{{ now() }}'

View File

@@ -156,7 +156,7 @@ template:
unique_id: 87653f3a-203c-4dbf-87e8-70bcacf6eb22
state: >
{% from 'sports.jinja' import sports_inhibit %}
{{ sports_inhibit('sensor.minnesota_golden_gophers_hockey') }}
{{ state_attr('sensor.minnesota_golden_gophers_hockey','opponent_abbr') in ['MICH','MNST'] or sports_inhibit('sensor.minnesota_golden_gophers_hockey') }}
- name: Minnesota Golden Gophers Hockey Event Today
unique_id: 1f4ff7eb-cbc9-4c81-a5c9-6523b5fb52ff
state: >
@@ -166,7 +166,7 @@ template:
unique_id: bd15870d-bccb-4c52-9690-473c31bb4090
state: >
{% from 'sports.jinja' import sports_inhibit %}
{{ sports_inhibit('sensor.minnesota_state_mavericks_hockey') }}
{{ state_attr('sensor.minnesota_state_mavericks_hockey','opponent_abbr') in ['MICH'] or sports_inhibit('sensor.minnesota_state_mavericks_hockey') }}
- name: Minnesota State Mavericks Hockey Event Today
unique_id: e403be15-3ff2-47b1-8398-70f8ccb65026
state: >

View File

@@ -2673,16 +2673,28 @@ kallen_night_meds:
reset_annc_switches:
alias: Reset Announcement Switches
sequence:
- service: input_boolean.turn_off
target:
- target:
entity_id:
- input_boolean.good_morning
- input_boolean.daily_briefing
- input_boolean.nightly_briefing
- input_boolean.kallen_morning_briefing
- input_boolean.kallen_nightly_briefing
- input_boolean.basement_briefing
data: {}
action: input_boolean.turn_off
alias: Turn off housewide briefing switches
- if:
- condition: state
entity_id: binary_sensor.basement_occupied
state:
- 'off'
then:
- action: input_boolean.turn_off
metadata: {}
target:
entity_id: input_boolean.basement_briefing
data: {}
alias: Turn off basement briefing switch if basement is not occupied
mode: single
icon: mdi:bullhorn-outline
emma_rainbow_lights:

View File

@@ -71,12 +71,12 @@
{% else %}
"Collin's room will be left alone, as he is spending the night elsewhere tonight. "
{% endif %}
{% if states('input_select.scheduled_climate_mode_emma_bedroom_aircon') != 'N/A' %}
{% if is_state('input_select.scheduled_climate_mode_emma_bedroom_aircon','AC') and is_state('input_boolean.hot_day','on') %}
{% if states('input_select.scheduled_climate_mode_emma_bedroom') != 'N/A' %}
{% if is_state('input_select.scheduled_climate_mode_emma_bedroom','AC') and is_state('input_boolean.hot_day','on') %}
"Today was a hot day, so Emma's bedroom air conditioner will start cooling a bit earlier tonight at {{ input_datetime_read('input_datetime.emma_bedroom_climate') }}. "
{% elif is_state('input_select.scheduled_climate_mode_emma_bedroom_aircon','AC') %}
{% elif is_state('input_select.scheduled_climate_mode_emma_bedroom','AC') %}
"Emma's bedroom air conditioner will start cooling at {{ input_datetime_read('input_datetime.emma_bedroom_climate') }}. "
{% elif is_state('input_select.scheduled_climate_mode_emma_bedroom_aircon','Fan') %}
{% elif is_state('input_select.scheduled_climate_mode_emma_bedroom','Fan') %}
"Emma's bedroom air conditioner will activate fan only mode at {{ input_datetime_read('input_datetime.emma_bedroom_climate') }}. "
{% elif is_state('input_select.scheduled_climate_mode_emma_bedroom','White Noise') and is_state('input_boolean.white_noise_emma_bedroom','off') %}
"Emma's white noise generator will activate at {{ input_datetime_read('input_datetime.emma_bedtime') }}. "