Compare commits

...

40 Commits

Author SHA1 Message Date
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
fedd824269 Fix long-standing issue with internet ping readout on main dashboard 2025-07-29 19:48:42 -04:00
84068cdc04 Updated test page on mobile dashboard 2025-07-27 22:20:43 -04:00
69b1002348 Better module for spinning fan icons 2025-07-27 22:20:24 -04:00
d3b14bf832 Add 'lights on' count to floor separators 2025-07-27 22:19:30 -04:00
996de9175e Specific SPC risk badges only show when relevant, not when "no risk" 2025-07-27 06:30:01 -04:00
56917d44af Use entity icon for tornado possible badge 2025-07-27 06:28:54 -04:00
387e8e304c Removed unused Global Scenes subview from mobile dashboard 2025-07-20 01:40:55 -04:00
6e4b84d3ff Facelift for mobile climate page 2025-07-20 01:38:51 -04:00
cbb40bbb64 Add mobile device trackers page to mobile dashboard 2025-07-17 22:36:42 -04:00
1c7b37189b Change testing entity for state color button 2025-07-17 22:36:20 -04:00
2f3bab52b2 Add theming to custom state color cards 2025-07-17 22:35:54 -04:00
008b500b74 Replace main_button_state_red with state_color_button_nav 2025-07-13 21:40:47 -04:00
367fadf870 Improve testing page for better, well, testing 2025-07-13 21:05:00 -04:00
8c4fd26d39 Fix visibility for NWS SPC status chips 2025-07-13 21:04:19 -04:00
d1d6f916e0 Add NWS SPC status chips for the daily severe weather outlooks 2025-07-11 21:23:48 -04:00
28419a49fa Fix door status chip looking at windows instead of doors 2025-07-11 21:23:26 -04:00
63d1c5ab23 Switch RAM usage sensors to one that, like, works 2025-07-11 21:22:55 -04:00
3258cd7922 Switch to Gauge Card Pro for computer stats displays 2025-07-09 16:58:39 -04:00
4441a0f4aa Add icons to headers on weather page 2025-07-08 16:37:00 -04:00
93551c62d5 Add SPC outlooks to weather page 2025-07-08 16:28:20 -04:00
4c4a0365bc New rotating icon module 2025-07-08 06:53:16 -04:00
25421d50ee State Color Button module replacing security and accent color buttons 2025-07-08 03:57:26 -04:00
35f0394310 Add testing view to mobile dashboard 2025-07-08 01:31:29 -04:00
91a328058f Use new popup timer bubble card module 2025-07-07 21:58:15 -04:00
70eff59703 Move more button card button theming to modules 2025-07-07 18:24:22 -04:00
1a4cc3503a Move some bubble card button theming to modules 2025-07-07 05:04:40 -04:00
3 changed files with 2998 additions and 828 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