Compare commits

...

5 Commits

5 changed files with 52 additions and 3 deletions
+1 -1
View File
@@ -1 +1 @@
2026.4.2
2026.5.1
+6
View File
@@ -6692,4 +6692,10 @@
entity_id: input_boolean.white_noise_emma_bedroom
data: {}
alias: Turn off white noise
- action: input_boolean.turn_off
metadata: {}
target:
entity_id: input_boolean.emma_bedroom_mode_switch
data: {}
alias: Turn off mode switch
mode: restart
+3
View File
@@ -130,6 +130,7 @@ recorder:
- sensor.*airpods_info
- sensor.*airpods_pro_info
- sensor.*response_time*
- sensor.system_monitor*
entities:
- sensor.avg_ping
- sensor.max_ping
@@ -292,6 +293,7 @@ influxdb:
- sensor.adguard*
- sensor.*response_time*
- sensor.weatheralerts*
- sensor.system_monitor*
entities:
- media_player.living_room_tv
- media_player.basement_tv
@@ -473,6 +475,7 @@ prometheus:
- sensor.adguard*
- sensor.*response_time*
- sensor.weatheralerts*
- sensor.system_monitor*
include_entities:
- media_player.living_room_tv
- media_player.basement_tv
+40
View File
@@ -677,3 +677,43 @@ intent_script:
entity_id: "{{ mode }}"
speech:
text: "Master bedroom set to {{ mode }}"
template:
- binary_sensor:
- name: "Second Floor Windows Open"
unique_id: 5656bf10-ac5b-467e-8cf7-e8331598352d
state: >
{% set open = states.binary_sensor
| selectattr('attributes.device_class','eq','window')
| selectattr('entity_id','in',label_entities('window'))
| selectattr('entity_id','in',floor_entities('second_floor'))
| selectattr('state','eq','on')
| list
| count %}
{{ open > 0 }}
attributes:
open_windows: >
{% set open = states.binary_sensor
| selectattr('attributes.device_class','eq','window')
| selectattr('entity_id','in',label_entities('window'))
| selectattr('entity_id','in',floor_entities('second_floor'))
| selectattr('state','eq','on')
| list
| count %}
{{ open }}
- name: "Emma Bedroom Climate Inhibit"
unique_id: 76f8ff76-2994-46bf-913c-736e97d72c3b
state: >
{{ is_state('binary_sensor.second_floor_windows_open','on') and is_state('binary_sensor.emma_bedroom_door','on') }}
- name: "Master Bedroom Climate Inhibit"
unique_id: e529bf0c-7975-477e-a0f8-4a05480674a9
state: >
{% set open = states.binary_sensor
| selectattr('attributes.device_class','eq','window')
| selectattr('entity_id','in',label_entities('window'))
| selectattr('entity_id','in',area_entities('master_bedroom'))
| selectattr('state','eq','on')
| list
| count %}
{% set shower_mode = states('input_boolean.shower_mode') %}
{{ (open > 0) and (shower_mode == 'off') }}
+1 -1
View File
@@ -76,7 +76,7 @@ ## HACS Lovelace Cards
- [Layout Card](https://github.com/thomasloven/lovelace-layout-card)
- [Scheduler Card](https://github.com/nielsfaber/scheduler-card) (required for Scheduler component)
- [Horizon Card](https://github.com/rejuvenate/lovelace-horizon-card)
- [Lovelace Home Feed Card](https://github.com/gadgetchnnel/lovelace-home-feed-card)
- [Lovelace Home Feed Card](https://github.com/ben-jam1n/lovelace-home-feed-card)
- [Mini Graph Card](https://github.com/kalkih/mini-graph-card)
- [Battery State Card](https://github.com/maxwroc/battery-state-card)
- [Flipdown Timer Card](https://github.com/pmongloid/flipdown-timer-card)