Compare commits

...

20 Commits

Author SHA1 Message Date
42ef50673c Fix additional merge issues 2025-09-16 02:14:20 -04:00
4cc75e21a1 New idea for lights cards for each room 2025-09-16 02:14:19 -04:00
56a1ece13e Remove icon styling from main dashboard 2025-09-16 02:14:18 -04:00
fd8aefe056 Switch main dash overhaul remaining declutter cards to streamline cards 2025-09-16 02:14:18 -04:00
c8a954b87e Begin overhauling first floor cards 2025-09-16 02:14:17 -04:00
b3c9720997 Redo the basement studio page on main dashboard with bubble cards 2025-09-16 02:14:16 -04:00
f561a31487 Add missing map for Very Heavy rain state from Tempest in home feed 2025-09-11 04:35:34 -04:00
658cc3d821 Add state maps for K in the home feed on main dashboard 2025-09-11 04:35:16 -04:00
1d30d48784 Minor fix to home feed card state_map for precip intensity 2025-09-02 17:13:38 -04:00
873827376b Add new controls to climate admin panel 2025-09-02 02:44:59 -04:00
946e92689e Fix styling for meds 2025-09-02 02:44:41 -04:00
c83cc465c8 Overhaul of med tracker status chips 2025-08-26 02:04:45 -04:00
4d12204ae8 Don't show general thunderstorm risk for SPC status chip 2025-08-26 02:04:27 -04:00
721f28923a Improve coloring for some of the status chips 2025-08-26 02:04:06 -04:00
82b3f4d833 Back to the drawing board on the birthday countdown cards 2025-08-26 02:01:10 -04:00
f4b2ad0292 Add birthday countdown cards to mobile dashboard 2025-08-13 21:47:10 -04:00
aad7981983 Fix washer/dryer button backgrounds on main dashboard 2025-08-11 19:13:55 -04:00
9f19a75ec3 Add alert chip if E's door alert is disabled 2025-08-11 19:13:10 -04:00
1acdd2c884 Fix ping sensors 2025-08-11 19:12:43 -04:00
ebb53377f0 Add contact sensor button template 2025-07-30 03:19:05 -04:00
3 changed files with 2589 additions and 364 deletions

View File

@@ -1006,6 +1006,13 @@ views:
int %} {% set roomtemp =
states('sensor.master_bedroom_temperature') | int %} {{
'Threshold Met' if roomtemp >= threshold else '' }}
- entity: input_number.master_bedroom_mode_switch_threshold
name: MBR Mode Switch
secondary_info: >
{% set threshold =
states('input_number.master_bedroom_mode_switch_threshold') |
int %} {% set high = states('sensor.todays_high_temp') | int
%} {{ 'Threshold Met' if high >= threshold else '' }}
- entity: input_boolean.master_bedroom_aircon_installed
name: Aircon Installed
- entity: input_boolean.master_bedroom_climate_protocol
@@ -1041,6 +1048,13 @@ views:
int %} {% set roomtemp =
states('sensor.emma_bedroom_temperature') | int %} {{
'Threshold Met' if roomtemp >= threshold else '' }}
- entity: input_number.emma_bedroom_mode_switch_threshold
name: EBR Mode Switch
secondary_info: >
{% set threshold =
states('input_number.emma_bedroom_mode_switch_threshold') |
int %} {% set high = states('sensor.todays_high_temp') | int
%} {{ 'Threshold Met' if high >= threshold else '' }}
- entity: input_boolean.emma_bedroom_aircon_installed
name: Aircon Installed
- entity: input_boolean.emma_bedroom_heater_installed

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff