Compare commits

...

9 Commits

5 changed files with 16 additions and 14 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

@@ -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

@@ -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') }}. "