Compare commits
36 Commits
Author | SHA1 | Date | |
---|---|---|---|
90b696f1d2
|
|||
5f328a0f19
|
|||
15fd29da7f
|
|||
ff7f575207
|
|||
64d746056d
|
|||
bbdbe03632
|
|||
76311304ba
|
|||
26024fe403
|
|||
b4d5551291
|
|||
0a4b7c1bd4
|
|||
85b0d872c6
|
|||
d13f2dc8ba
|
|||
e6036f1400
|
|||
a5fecc9af0
|
|||
58d97c4a0c
|
|||
9efe2d9810
|
|||
2450205623
|
|||
c6568610f8
|
|||
a860a8404d
|
|||
84e87a9f2e
|
|||
03dcd81da6
|
|||
867044d40b
|
|||
d2bb3c3d49
|
|||
c16d247887
|
|||
4930f54fb5
|
|||
7adcbe4b9a
|
|||
8425178f20
|
|||
a66e7e3383
|
|||
9a3df5b1ba
|
|||
a589f13876
|
|||
a8cf523adb
|
|||
7c86692101
|
|||
de7f14f77b
|
|||
bba958ee63
|
|||
6677ca2444
|
|||
34b5e1282c
|
@ -75,18 +75,6 @@ views:
|
|||||||
title: Automations
|
title: Automations
|
||||||
state_color: true
|
state_color: true
|
||||||
show_header_toggle: false
|
show_header_toggle: false
|
||||||
- type: entities
|
|
||||||
entities:
|
|
||||||
- entity: input_text.material_rounded_base_color_tony_stork
|
|
||||||
secondary_info: none
|
|
||||||
name: Tony
|
|
||||||
- entity: input_text.material_rounded_base_color_christina_stork
|
|
||||||
secondary_info: none
|
|
||||||
name: Tina
|
|
||||||
- entity: input_text.material_rounded_base_color_kallen_stork
|
|
||||||
secondary_info: none
|
|
||||||
name: Kallen
|
|
||||||
title: Theme Colors
|
|
||||||
- type: grid
|
- type: grid
|
||||||
cards:
|
cards:
|
||||||
- type: heading
|
- type: heading
|
||||||
@ -417,6 +405,8 @@ views:
|
|||||||
to: ''
|
to: ''
|
||||||
- from: Dimmer Switch
|
- from: Dimmer Switch
|
||||||
to: ''
|
to: ''
|
||||||
|
- from: Home Tempest Cloud Sensors
|
||||||
|
to: Tempest Weather Station
|
||||||
collapse:
|
collapse:
|
||||||
- name: 'Door Sensors (min: {min}%, count: {count})'
|
- name: 'Door Sensors (min: {min}%, count: {count})'
|
||||||
secondary_info: Battery levels {range}%
|
secondary_info: Battery levels {range}%
|
||||||
@ -910,6 +900,10 @@ views:
|
|||||||
int %} {% set roomtemp =
|
int %} {% set roomtemp =
|
||||||
states('sensor.master_bedroom_temperature') | int %} {{
|
states('sensor.master_bedroom_temperature') | int %} {{
|
||||||
'Threshold Met' if roomtemp >= threshold else '' }}
|
'Threshold Met' if roomtemp >= threshold else '' }}
|
||||||
|
- entity: input_boolean.master_bedroom_aircon_installed
|
||||||
|
name: Aircon Installed
|
||||||
|
- entity: input_boolean.master_bedroom_climate_protocol
|
||||||
|
name: Climate Automations
|
||||||
title: Master Bedroom Aircon
|
title: Master Bedroom Aircon
|
||||||
visibility:
|
visibility:
|
||||||
- condition: state
|
- condition: state
|
||||||
@ -941,6 +935,14 @@ views:
|
|||||||
int %} {% set roomtemp =
|
int %} {% set roomtemp =
|
||||||
states('sensor.emma_bedroom_temperature') | int %} {{
|
states('sensor.emma_bedroom_temperature') | int %} {{
|
||||||
'Threshold Met' if roomtemp >= threshold else '' }}
|
'Threshold Met' if roomtemp >= threshold else '' }}
|
||||||
|
- entity: input_boolean.emma_bedroom_aircon_installed
|
||||||
|
name: Aircon Installed
|
||||||
|
- entity: input_boolean.emma_bedroom_heater_installed
|
||||||
|
name: Heater Installed
|
||||||
|
- entity: input_boolean.emma_bedroom_climate_protocol
|
||||||
|
name: Climate Automations
|
||||||
|
- entity: switch.emma_bedroom_climate_watchdog
|
||||||
|
name: Climate Watchdog
|
||||||
title: Emma Bedroom Aircon
|
title: Emma Bedroom Aircon
|
||||||
visibility:
|
visibility:
|
||||||
- condition: state
|
- condition: state
|
||||||
@ -1510,80 +1512,108 @@ views:
|
|||||||
heading: Volume Settings
|
heading: Volume Settings
|
||||||
heading_style: title
|
heading_style: title
|
||||||
icon: mdi:volume-high
|
icon: mdi:volume-high
|
||||||
|
- type: entities
|
||||||
|
entities:
|
||||||
|
- entity: sensor.basement_echo_dot_volume
|
||||||
|
name: Basement Echo
|
||||||
|
secondary_info: >
|
||||||
|
{% if
|
||||||
|
is_state_attr('media_player.basement_echo_dot','is_volume_muted',true)
|
||||||
|
%}
|
||||||
|
MUTED
|
||||||
|
{% elif
|
||||||
|
state_attr('media_player.basement_echo_dot','volume_level') %}
|
||||||
|
{{ state_attr('media_player.basement_echo_dot','volume_level') | round(2) }}
|
||||||
|
{% else %}
|
||||||
|
Off
|
||||||
|
{% endif %}
|
||||||
|
- entity: sensor.basement_google_speaker_volume
|
||||||
|
name: Basement Google
|
||||||
|
secondary_info: >
|
||||||
|
{% if
|
||||||
|
is_state_attr('media_player.basement_google_speaker','is_volume_muted',true)
|
||||||
|
%}
|
||||||
|
MUTED
|
||||||
|
{% elif
|
||||||
|
state_attr('media_player.basement_google_speaker','volume_level')
|
||||||
|
%}
|
||||||
|
{{ state_attr('media_player.basement_google_speaker','volume_level') | round(2) }}
|
||||||
|
{% else %}
|
||||||
|
Off
|
||||||
|
{% endif %}
|
||||||
|
- entity: sensor.living_room_echo_dot_volume
|
||||||
|
name: Living Room Echo
|
||||||
|
secondary_info: >
|
||||||
|
{% if
|
||||||
|
is_state_attr('media_player.living_room_echo_dot','is_volume_muted',true)
|
||||||
|
%}
|
||||||
|
MUTED
|
||||||
|
{% elif
|
||||||
|
state_attr('media_player.living_room_echo_dot','volume_level')
|
||||||
|
%}
|
||||||
|
{{ state_attr('media_player.living_room_echo_dot','volume_level') | round(2) }}
|
||||||
|
{% else %}
|
||||||
|
Off
|
||||||
|
{% endif %}
|
||||||
|
- entity: sensor.master_bedroom_echo_dot_volume
|
||||||
|
name: Master Bedroom Echo
|
||||||
|
secondary_info: >
|
||||||
|
{% if
|
||||||
|
is_state_attr('media_player.master_bedroom_echo_dot','is_volume_muted',true)
|
||||||
|
%}
|
||||||
|
MUTED
|
||||||
|
{% elif
|
||||||
|
state_attr('media_player.master_bedroom_echo_dot','volume_level')
|
||||||
|
%}
|
||||||
|
{{ state_attr('media_player.master_bedroom_echo_dot','volume_level') | round(2) }}
|
||||||
|
{% else %}
|
||||||
|
Off
|
||||||
|
{% endif %}
|
||||||
|
- entity: sensor.kallen_bedroom_google_speaker_volume
|
||||||
|
name: Kallen Bedroom Google
|
||||||
|
secondary_info: >
|
||||||
|
{% if
|
||||||
|
is_state_attr('media_player.kallen_bedroom_google_speaker','is_volume_muted',true)
|
||||||
|
%}
|
||||||
|
MUTED
|
||||||
|
{% elif
|
||||||
|
state_attr('media_player.kallen_bedroom_google_speaker','volume_level')
|
||||||
|
%}
|
||||||
|
{{ state_attr('media_player.kallen_bedroom_google_speaker','volume_level') | round(2) }}
|
||||||
|
{% else %}
|
||||||
|
Off
|
||||||
|
{% endif %}
|
||||||
|
- entity: sensor.emma_bedroom_google_speaker_volume
|
||||||
|
name: Emma Bedroom Google
|
||||||
|
secondary_info: >
|
||||||
|
{% if
|
||||||
|
is_state_attr('media_player.emma_bedroom_google_speaker','is_volume_muted',true)
|
||||||
|
%}
|
||||||
|
MUTED
|
||||||
|
{% elif
|
||||||
|
state_attr('media_player.emma_bedroom_google_speaker','volume_level')
|
||||||
|
%}
|
||||||
|
{{ state_attr('media_player.emma_bedroom_google_speaker','volume_level') | round(2) }}
|
||||||
|
{% else %}
|
||||||
|
Off
|
||||||
|
{% endif %}
|
||||||
|
title: Active Settings
|
||||||
|
show_header_toggle: false
|
||||||
|
state_color: true
|
||||||
- type: entities
|
- type: entities
|
||||||
entities:
|
entities:
|
||||||
- entity: input_number.basement_echo_dot_day_volume
|
- entity: input_number.basement_echo_dot_day_volume
|
||||||
name: Basement Echo
|
name: Basement Echo
|
||||||
secondary_info: |
|
|
||||||
{% if is_state('input_boolean.give_me_darkness','off') %}
|
|
||||||
{% if is_state_attr('media_player.basement_echo_dot','is_volume_muted',true) %}
|
|
||||||
MUTED
|
|
||||||
{% elif state_attr('media_player.basement_echo_dot','volume_level') %}
|
|
||||||
{{ state_attr('media_player.basement_echo_dot','volume_level') | round(2) }}
|
|
||||||
{% else %}
|
|
||||||
Off
|
|
||||||
{% endif %}
|
|
||||||
{% endif %}
|
|
||||||
- entity: input_number.basement_google_speaker_day_volume
|
- entity: input_number.basement_google_speaker_day_volume
|
||||||
name: Basement Google
|
name: Basement Google
|
||||||
secondary_info: |
|
|
||||||
{% if is_state('input_boolean.give_me_darkness','off') %}
|
|
||||||
{% if is_state_attr('media_player.basement_google_speaker','is_volume_muted',true) %}
|
|
||||||
MUTED
|
|
||||||
{% elif state_attr('media_player.basement_google_speaker','volume_level') %}
|
|
||||||
{{ state_attr('media_player.basement_google_speaker','volume_level') | round(2) }}
|
|
||||||
{% else %}
|
|
||||||
Off
|
|
||||||
{% endif %}
|
|
||||||
{% endif %}
|
|
||||||
- entity: input_number.living_room_echo_dot_day_volume
|
- entity: input_number.living_room_echo_dot_day_volume
|
||||||
name: Living Room Echo
|
name: Living Room Echo
|
||||||
secondary_info: |
|
|
||||||
{% if is_state('input_boolean.give_me_darkness','off') %}
|
|
||||||
{% if is_state_attr('media_player.living_room_echo_dot','is_volume_muted',true) %}
|
|
||||||
MUTED
|
|
||||||
{% elif state_attr('media_player.living_room_echo_dot','volume_level') %}
|
|
||||||
{{ state_attr('media_player.living_room_echo_dot','volume_level') | round(2) }}
|
|
||||||
{% else %}
|
|
||||||
Off
|
|
||||||
{% endif %}
|
|
||||||
{% endif %}
|
|
||||||
- entity: input_number.master_bedroom_echo_dot_day_volume
|
- entity: input_number.master_bedroom_echo_dot_day_volume
|
||||||
name: Master Bedroom Echo
|
name: Master Bedroom Echo
|
||||||
secondary_info: |
|
|
||||||
{% if is_state('input_boolean.give_me_darkness','off') %}
|
|
||||||
{% if is_state_attr('media_player.master_bedroom_echo_dot','is_volume_muted',true) %}
|
|
||||||
MUTED
|
|
||||||
{% elif state_attr('media_player.master_bedroom_echo_dot','volume_level') %}
|
|
||||||
{{ state_attr('media_player.master_bedroom_echo_dot','volume_level') | round(2) }}
|
|
||||||
{% else %}
|
|
||||||
Off
|
|
||||||
{% endif %}
|
|
||||||
{% endif %}
|
|
||||||
- entity: input_number.kallen_bedroom_google_speaker_day_volume
|
- entity: input_number.kallen_bedroom_google_speaker_day_volume
|
||||||
name: Kallen Bedroom Google
|
name: Kallen Bedroom Google
|
||||||
secondary_info: |
|
|
||||||
{% if is_state('input_boolean.give_me_darkness','off') %}
|
|
||||||
{% if is_state_attr('media_player.kallen_bedroom_google_speaker','is_volume_muted',true) %}
|
|
||||||
MUTED
|
|
||||||
{% elif state_attr('media_player.kallen_bedroom_google_speaker','volume_level') %}
|
|
||||||
{{ state_attr('media_player.kallen_bedroom_google_speaker','volume_level') | round(2) }}
|
|
||||||
{% else %}
|
|
||||||
Off
|
|
||||||
{% endif %}
|
|
||||||
{% endif %}
|
|
||||||
- entity: input_number.emma_bedroom_google_speaker_day_volume
|
- entity: input_number.emma_bedroom_google_speaker_day_volume
|
||||||
name: Emma Bedroom Google
|
name: Emma Bedroom Google
|
||||||
secondary_info: |
|
|
||||||
{% if is_state('input_boolean.give_me_darkness','off') %}
|
|
||||||
{% if is_state_attr('media_player.emma_bedroom_google_speaker','is_volume_muted',true) %}
|
|
||||||
MUTED
|
|
||||||
{% elif state_attr('media_player.emma_bedroom_google_speaker','volume_level') %}
|
|
||||||
{{ state_attr('media_player.emma_bedroom_google_speaker','volume_level') | round(2) }}
|
|
||||||
{% else %}
|
|
||||||
Off
|
|
||||||
{% endif %}
|
|
||||||
{% endif %}
|
|
||||||
title: Day
|
title: Day
|
||||||
show_header_toggle: false
|
show_header_toggle: false
|
||||||
state_color: true
|
state_color: true
|
||||||
@ -1591,76 +1621,17 @@ views:
|
|||||||
entities:
|
entities:
|
||||||
- entity: input_number.basement_echo_dot_night_volume
|
- entity: input_number.basement_echo_dot_night_volume
|
||||||
name: Basement Echo
|
name: Basement Echo
|
||||||
secondary_info: |
|
|
||||||
{% if is_state('input_boolean.give_me_darkness','on') %}
|
|
||||||
{% if is_state_attr('media_player.basement_echo_dot','is_volume_muted',true) %}
|
|
||||||
MUTED
|
|
||||||
{% elif state_attr('media_player.basement_echo_dot','volume_level') %}
|
|
||||||
{{ state_attr('media_player.basement_echo_dot','volume_level') | round(2) }}
|
|
||||||
{% else %}
|
|
||||||
Off
|
|
||||||
{% endif %}
|
|
||||||
{% endif %}
|
|
||||||
- entity: input_number.basement_google_speaker_night_volume
|
- entity: input_number.basement_google_speaker_night_volume
|
||||||
name: Basement Google
|
name: Basement Google
|
||||||
secondary_info: |
|
|
||||||
{% if is_state('input_boolean.give_me_darkness','on') %}
|
|
||||||
{% if is_state_attr('media_player.basement_google_speaker','is_volume_muted',true) %}
|
|
||||||
MUTED
|
|
||||||
{% elif state_attr('media_player.basement_google_speaker','volume_level') %}
|
|
||||||
{{ state_attr('media_player.basement_google_speaker','volume_level') | round(2) }}
|
|
||||||
{% else %}
|
|
||||||
Off
|
|
||||||
{% endif %}
|
|
||||||
{% endif %}
|
|
||||||
- entity: input_number.living_room_echo_dot_night_volume
|
- entity: input_number.living_room_echo_dot_night_volume
|
||||||
name: Living Room Echo
|
name: Living Room Echo
|
||||||
secondary_info: |
|
secondary_info: ''
|
||||||
{% if is_state('input_boolean.give_me_darkness','on') %}
|
|
||||||
{% if is_state_attr('media_player.living_room_echo_dot','is_volume_muted',true) %}
|
|
||||||
MUTED
|
|
||||||
{% elif state_attr('media_player.living_room_echo_dot','volume_level') %}
|
|
||||||
{{ state_attr('media_player.living_room_echo_dot','volume_level') | round(2) }}
|
|
||||||
{% else %}
|
|
||||||
Off
|
|
||||||
{% endif %}
|
|
||||||
{% endif %}
|
|
||||||
- entity: input_number.master_bedroom_echo_dot_night_volume
|
- entity: input_number.master_bedroom_echo_dot_night_volume
|
||||||
name: Master Bedroom Echo
|
name: Master Bedroom Echo
|
||||||
secondary_info: |
|
|
||||||
{% if is_state('input_boolean.give_me_darkness','on') %}
|
|
||||||
{% if is_state_attr('media_player.master_bedroom_echo_dot','is_volume_muted',true) %}
|
|
||||||
MUTED
|
|
||||||
{% elif state_attr('media_player.master_bedroom_echo_dot','volume_level') %}
|
|
||||||
{{ state_attr('media_player.master_bedroom_echo_dot','volume_level') | round(2) }}
|
|
||||||
{% else %}
|
|
||||||
Off
|
|
||||||
{% endif %}
|
|
||||||
{% endif %}
|
|
||||||
- entity: input_number.kallen_bedroom_google_speaker_night_volume
|
- entity: input_number.kallen_bedroom_google_speaker_night_volume
|
||||||
name: Kallen Bedroom Google
|
name: Kallen Bedroom Google
|
||||||
secondary_info: |
|
|
||||||
{% if is_state('input_boolean.give_me_darkness','on') %}
|
|
||||||
{% if is_state_attr('media_player.kallen_bedroom_google_speaker','is_volume_muted',true) %}
|
|
||||||
MUTED
|
|
||||||
{% elif state_attr('media_player.kallen_bedroom_google_speaker','volume_level') %}
|
|
||||||
{{ state_attr('media_player.kallen_bedroom_google_speaker','volume_level') | round(2) }}
|
|
||||||
{% else %}
|
|
||||||
Off
|
|
||||||
{% endif %}
|
|
||||||
{% endif %}
|
|
||||||
- entity: input_number.emma_bedroom_google_speaker_night_volume
|
- entity: input_number.emma_bedroom_google_speaker_night_volume
|
||||||
name: Emma Bedroom Google
|
name: Emma Bedroom Google
|
||||||
secondary_info: |
|
|
||||||
{% if is_state('input_boolean.give_me_darkness','on') %}
|
|
||||||
{% if is_state_attr('media_player.emma_bedroom_google_speaker','is_volume_muted',true) %}
|
|
||||||
MUTED
|
|
||||||
{% elif state_attr('media_player.emma_bedroom_google_speaker','volume_level') %}
|
|
||||||
{{ state_attr('media_player.emma_bedroom_google_speaker','volume_level') | round(2) }}
|
|
||||||
{% else %}
|
|
||||||
Off
|
|
||||||
{% endif %}
|
|
||||||
{% endif %}
|
|
||||||
title: Night
|
title: Night
|
||||||
show_header_toggle: false
|
show_header_toggle: false
|
||||||
state_color: true
|
state_color: true
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
decluttering_templates:
|
streamline_templates:
|
||||||
phone_info_grid:
|
phone_info_grid:
|
||||||
card:
|
card:
|
||||||
type: custom:stack-in-card
|
type: custom:stack-in-card
|
||||||
@ -342,48 +342,53 @@ views:
|
|||||||
heading: Family Calendar
|
heading: Family Calendar
|
||||||
heading_style: title
|
heading_style: title
|
||||||
icon: mdi:calendar
|
icon: mdi:calendar
|
||||||
- type: custom:atomic-calendar-revive
|
- entities:
|
||||||
enableModeChange: true
|
- entity: calendar.family
|
||||||
firstDayOfWeek: 1
|
label: mdi:human-male-female-child
|
||||||
maxDaysToShow: 7
|
color: green
|
||||||
refreshInterval: 15
|
accent_color: green
|
||||||
entities:
|
- entity: calendar.kallen_school_days
|
||||||
- calendar.family
|
label: mdi:school
|
||||||
- calendar.kallen_school_days
|
color: orange
|
||||||
- calendar.tony_s_twitch_schedule
|
accent_color: orange
|
||||||
|
- entity: calendar.tony_s_twitch_schedule
|
||||||
|
label: mdi:twitch
|
||||||
|
color: purple
|
||||||
|
accent_color: purple
|
||||||
- calendar.kallen_early_release
|
- calendar.kallen_early_release
|
||||||
- calendar.tm24fan8_gmail_com
|
- calendar.tm24fan8_gmail_com
|
||||||
- calendar.irishpirate1988_gmail_com
|
- calendar.irishpirate1988_gmail_com
|
||||||
- calendar.vacation
|
- calendar.vacation
|
||||||
showLoader: true
|
days_to_show: 5
|
||||||
hideFinishedEvents: true
|
week_separator_width: 1px
|
||||||
showRelativeTime: false
|
month_separator_width: 1px
|
||||||
showDate: true
|
today_indicator: dot
|
||||||
sortByStartTime: true
|
weekend_weekday_color: cyan
|
||||||
showLocation: true
|
weekend_day_color: cyan
|
||||||
hideDuplicates: false
|
weekend_month_color: cyan
|
||||||
noEventText: Nothing scheduled for today!
|
today_weekday_color: ''
|
||||||
showCurrentEventLine: false
|
today_day_color: ''
|
||||||
showMonth: false
|
today_month_color: ''
|
||||||
showProgressBar: true
|
show_countdown: true
|
||||||
showWeekDay: true
|
show_progress_bar: true
|
||||||
disableEventLink: false
|
remove_location_country: true
|
||||||
showNoEventsForToday: true
|
weather:
|
||||||
showEventIcon: false
|
position: both
|
||||||
showFullDayProgress: false
|
date:
|
||||||
showLastCalendarWeek: false
|
show_conditions: true
|
||||||
disableCalEventLink: false
|
show_high_temp: true
|
||||||
disableCalLocationLink: false
|
show_low_temp: true
|
||||||
showTimeRemaining: true
|
icon_size: 14px
|
||||||
showAllDayEvents: true
|
font_size: 12px
|
||||||
hoursOnSameLine: false
|
color: var(--primary-text-color)
|
||||||
showMultiDayEventParts: false
|
event:
|
||||||
showMultiDay: false
|
show_conditions: true
|
||||||
showDescription: false
|
show_temp: true
|
||||||
disableLocationLink: false
|
icon_size: 14px
|
||||||
showCalendarName: false
|
font_size: 12px
|
||||||
showAllDayHours: true
|
color: var(--primary-text-color)
|
||||||
disableCalLink: false
|
entity: weather.iron_nerd_studios
|
||||||
|
type: custom:calendar-card-pro
|
||||||
- type: grid
|
- type: grid
|
||||||
cards:
|
cards:
|
||||||
- type: heading
|
- type: heading
|
||||||
@ -463,13 +468,16 @@ views:
|
|||||||
'off': No lightning detected
|
'off': No lightning detected
|
||||||
'on': Lightning is in the area!
|
'on': Lightning is in the area!
|
||||||
content_template: '{{state}}'
|
content_template: '{{state}}'
|
||||||
- entity: binary_sensor.raining
|
- entity: sensor.home_tempest_precipitation_type
|
||||||
|
name: Precipitation Type
|
||||||
|
- entity: sensor.home_tempest_cloud_sensors_precipitation_intensity
|
||||||
|
name: Precipitation Intensity
|
||||||
state_map:
|
state_map:
|
||||||
'off': It is not currently raining
|
none: None
|
||||||
'on': It is currently raining
|
very_light: Very Light
|
||||||
unavailable: I have no idea if it is raining
|
light: Light
|
||||||
unknown: I have no idea if it is raining
|
moderate: Moderate
|
||||||
content_template: '{{state}}'
|
heavy: Heavy
|
||||||
- entity: input_boolean.recliner_mode
|
- entity: input_boolean.recliner_mode
|
||||||
- entity: timer.washer_timer
|
- entity: timer.washer_timer
|
||||||
state_map:
|
state_map:
|
||||||
@ -2046,6 +2054,9 @@ views:
|
|||||||
eco:
|
eco:
|
||||||
name: Eco On
|
name: Eco On
|
||||||
boost: false
|
boost: false
|
||||||
|
comfort: false
|
||||||
|
sleep: false
|
||||||
|
away: false
|
||||||
- type: custom:state-switch
|
- type: custom:state-switch
|
||||||
entity: input_boolean.master_bedroom_aircon_installed
|
entity: input_boolean.master_bedroom_aircon_installed
|
||||||
states:
|
states:
|
||||||
@ -2417,6 +2428,9 @@ views:
|
|||||||
eco:
|
eco:
|
||||||
name: Eco On
|
name: Eco On
|
||||||
boost: false
|
boost: false
|
||||||
|
comfort: false
|
||||||
|
sleep: false
|
||||||
|
away: false
|
||||||
- type: custom:state-switch
|
- type: custom:state-switch
|
||||||
entity: input_boolean.emma_bedroom_aircon_installed
|
entity: input_boolean.emma_bedroom_aircon_installed
|
||||||
states:
|
states:
|
||||||
@ -2481,6 +2495,9 @@ views:
|
|||||||
name: Cancel Door Alert
|
name: Cancel Door Alert
|
||||||
- entity: switch.emma_bedroom_motion_lighting
|
- entity: switch.emma_bedroom_motion_lighting
|
||||||
name: Motion Lighting
|
name: Motion Lighting
|
||||||
|
- entity: switch.emma_bedroom_climate_watchdog
|
||||||
|
name: Climate Watchdog
|
||||||
|
secondary_info: Protects aircon settings
|
||||||
- entity: input_number.nighttime_brightness_emma_bedroom
|
- entity: input_number.nighttime_brightness_emma_bedroom
|
||||||
name: Night Brightness
|
name: Night Brightness
|
||||||
- entity: input_number.emma_bedroom_lights_off_delay
|
- entity: input_number.emma_bedroom_lights_off_delay
|
||||||
@ -2993,10 +3010,17 @@ views:
|
|||||||
layout: icon|name_state
|
layout: icon|name_state
|
||||||
state:
|
state:
|
||||||
case: first
|
case: first
|
||||||
|
- entity: switch.front_porch_storm_mode
|
||||||
|
name: Storm Mode
|
||||||
|
layout: icon|name_state
|
||||||
|
state:
|
||||||
|
case: first
|
||||||
- entity: input_number.daytime_colortemp_front_porch
|
- entity: input_number.daytime_colortemp_front_porch
|
||||||
name: Day Colortemp
|
name: Day Colortemp
|
||||||
- entity: input_number.nighttime_colortemp_front_porch
|
- entity: input_number.nighttime_colortemp_front_porch
|
||||||
name: Night Colortemp
|
name: Night Colortemp
|
||||||
|
- entity: input_number.front_porch_lux_threshold
|
||||||
|
name: Lux Threshold
|
||||||
- entity: input_number.front_porch_motion_off_delay
|
- entity: input_number.front_porch_motion_off_delay
|
||||||
name: Lights Off Delay
|
name: Lights Off Delay
|
||||||
max_columns: 4
|
max_columns: 4
|
||||||
@ -3430,18 +3454,12 @@ views:
|
|||||||
cards:
|
cards:
|
||||||
- type: heading
|
- type: heading
|
||||||
heading: Master Bedroom
|
heading: Master Bedroom
|
||||||
- type: entities
|
|
||||||
entities:
|
|
||||||
- entity: input_boolean.master_bedroom_aircon_installed
|
|
||||||
name: Aircon Installed
|
|
||||||
- entity: input_boolean.master_bedroom_climate_protocol
|
|
||||||
name: Climate Automations
|
|
||||||
state_color: true
|
|
||||||
show_header_toggle: false
|
|
||||||
- type: entities
|
- type: entities
|
||||||
entities:
|
entities:
|
||||||
- entity: switch.master_bedroom_aircon_display
|
- entity: switch.master_bedroom_aircon_display
|
||||||
name: A/C Display
|
name: A/C Display
|
||||||
|
- entity: switch.master_bedroom_aircon_prompt_tone
|
||||||
|
name: Prompt Tone
|
||||||
- entity: binary_sensor.master_bedroom_aircon_filter_alert
|
- entity: binary_sensor.master_bedroom_aircon_filter_alert
|
||||||
name: Filter Status
|
name: Filter Status
|
||||||
- entity: input_number.master_bedroom_daytime_temp
|
- entity: input_number.master_bedroom_daytime_temp
|
||||||
@ -3452,6 +3470,13 @@ views:
|
|||||||
name: Bedtime Temp
|
name: Bedtime Temp
|
||||||
- entity: button.master_bedroom_fan_only
|
- entity: button.master_bedroom_fan_only
|
||||||
name: A/C Fan Only
|
name: A/C Fan Only
|
||||||
|
- entity: button.master_bedroom_day_mode
|
||||||
|
name: Day Mode
|
||||||
|
icon: m3rf:sunny
|
||||||
|
- entity: button.master_bedroom_night_mode
|
||||||
|
name: Night Mode
|
||||||
|
- entity: button.master_bedroom_bedtime_mode
|
||||||
|
name: Bedtime Mode
|
||||||
- entity: button.master_bedroom_climate_reset
|
- entity: button.master_bedroom_climate_reset
|
||||||
name: Climate Reset
|
name: Climate Reset
|
||||||
show_header_toggle: false
|
show_header_toggle: false
|
||||||
@ -3469,24 +3494,15 @@ views:
|
|||||||
cards:
|
cards:
|
||||||
- type: heading
|
- type: heading
|
||||||
heading: Emma Bedroom
|
heading: Emma Bedroom
|
||||||
- type: entities
|
|
||||||
entities:
|
|
||||||
- entity: input_boolean.emma_bedroom_aircon_installed
|
|
||||||
name: Aircon Installed
|
|
||||||
- entity: input_boolean.emma_bedroom_climate_protocol
|
|
||||||
name: Climate Automations
|
|
||||||
state_color: true
|
|
||||||
show_header_toggle: false
|
|
||||||
- type: entities
|
|
||||||
entities:
|
|
||||||
- entity: input_boolean.emma_bedroom_heater_installed
|
|
||||||
name: Heater Installed
|
|
||||||
show_header_toggle: false
|
|
||||||
state_color: true
|
|
||||||
- type: entities
|
- type: entities
|
||||||
entities:
|
entities:
|
||||||
- entity: switch.emma_bedroom_aircon_display
|
- entity: switch.emma_bedroom_aircon_display
|
||||||
name: A/C Display
|
name: A/C Display
|
||||||
|
- entity: switch.emma_bedroom_aircon_prompt_tone
|
||||||
|
name: Prompt Tone
|
||||||
|
- entity: switch.emma_bedroom_climate_watchdog
|
||||||
|
name: Climate Watchdog
|
||||||
|
secondary_info: Protects aircon settings
|
||||||
- entity: binary_sensor.emma_bedroom_aircon_filter_alert
|
- entity: binary_sensor.emma_bedroom_aircon_filter_alert
|
||||||
name: Filter Status
|
name: Filter Status
|
||||||
- entity: input_number.emma_bedroom_daytime_temp
|
- entity: input_number.emma_bedroom_daytime_temp
|
||||||
@ -3497,6 +3513,13 @@ views:
|
|||||||
name: Bedtime Temp
|
name: Bedtime Temp
|
||||||
- entity: button.emma_bedroom_fan_only
|
- entity: button.emma_bedroom_fan_only
|
||||||
name: A/C Fan Only
|
name: A/C Fan Only
|
||||||
|
- entity: button.emma_bedroom_day_mode
|
||||||
|
name: Day Mode
|
||||||
|
icon: m3rf:sunny
|
||||||
|
- entity: button.emma_bedroom_night_mode
|
||||||
|
name: Night Mode
|
||||||
|
- entity: button.emma_bedroom_bedtime_mode
|
||||||
|
name: Bedtime Mode
|
||||||
- entity: button.emma_bedroom_climate_reset
|
- entity: button.emma_bedroom_climate_reset
|
||||||
name: Climate Reset
|
name: Climate Reset
|
||||||
show_header_toggle: false
|
show_header_toggle: false
|
||||||
@ -3558,11 +3581,8 @@ views:
|
|||||||
exclude_states:
|
exclude_states:
|
||||||
- unavailable
|
- unavailable
|
||||||
- unknown
|
- unknown
|
||||||
- entity: sensor.master_bedroom_aircon_eco_mode
|
- entity: switch.master_bedroom_aircon_eco_mode
|
||||||
name: Master Bedroom Eco Mode
|
name: Master Bedroom Eco Mode
|
||||||
exclude_states:
|
|
||||||
- unavailable
|
|
||||||
- unknown
|
|
||||||
- entity: sensor.master_bedroom_aircon_fan_mode
|
- entity: sensor.master_bedroom_aircon_fan_mode
|
||||||
name: Master Bedroom A/C Fan
|
name: Master Bedroom A/C Fan
|
||||||
exclude_states:
|
exclude_states:
|
||||||
@ -3578,11 +3598,8 @@ views:
|
|||||||
exclude_states:
|
exclude_states:
|
||||||
- unavailable
|
- unavailable
|
||||||
- unknown
|
- unknown
|
||||||
- entity: sensor.emma_bedroom_eco_mode
|
- entity: switch.emma_bedroom_aircon_eco_mode
|
||||||
name: Emma Bedroom Eco Mode
|
name: Emma Bedroom Eco Mode
|
||||||
exclude_states:
|
|
||||||
- unavailable
|
|
||||||
- unknown
|
|
||||||
- entity: sensor.emma_bedroom_aircon_fan_mode
|
- entity: sensor.emma_bedroom_aircon_fan_mode
|
||||||
name: Emma Bedroom A/C Fan
|
name: Emma Bedroom A/C Fan
|
||||||
exclude_states:
|
exclude_states:
|
||||||
@ -3618,6 +3635,16 @@ views:
|
|||||||
exclude_states:
|
exclude_states:
|
||||||
- unavailable
|
- unavailable
|
||||||
- unknown
|
- unknown
|
||||||
|
- entity: switch.master_bedroom_aircon_display
|
||||||
|
name: Master Bedroom A/C Display
|
||||||
|
exclude_states:
|
||||||
|
- unavailable
|
||||||
|
- unknown
|
||||||
|
- entity: switch.emma_bedroom_aircon_display
|
||||||
|
name: Emma Bedroom A/C Display
|
||||||
|
exclude_states:
|
||||||
|
- unavailable
|
||||||
|
- unknown
|
||||||
max_columns: 4
|
max_columns: 4
|
||||||
cards: []
|
cards: []
|
||||||
badges: []
|
badges: []
|
||||||
@ -3985,9 +4012,6 @@ views:
|
|||||||
name: I am awake
|
name: I am awake
|
||||||
- entity: input_select.kallen_morning_briefing_location
|
- entity: input_select.kallen_morning_briefing_location
|
||||||
name: Morning Briefing Location
|
name: Morning Briefing Location
|
||||||
- entity: input_text.material_rounded_base_color_kallen_stork
|
|
||||||
secondary_info: none
|
|
||||||
name: Theme Color
|
|
||||||
max_columns: 4
|
max_columns: 4
|
||||||
cards: []
|
cards: []
|
||||||
background:
|
background:
|
||||||
@ -4140,11 +4164,11 @@ views:
|
|||||||
cards:
|
cards:
|
||||||
- type: heading
|
- type: heading
|
||||||
heading: Tony's iPhone
|
heading: Tony's iPhone
|
||||||
- type: custom:decluttering-card
|
- type: custom:streamline-card
|
||||||
template: iphone_entities_card
|
template: iphone_entities_card
|
||||||
variables:
|
variables:
|
||||||
- device: tony_s_iphone
|
- device: tony_s_iphone
|
||||||
- type: custom:decluttering-card
|
- type: custom:streamline-card
|
||||||
template: phone_info_grid
|
template: phone_info_grid
|
||||||
variables:
|
variables:
|
||||||
- device: tony_s_iphone
|
- device: tony_s_iphone
|
||||||
@ -4153,11 +4177,11 @@ views:
|
|||||||
cards:
|
cards:
|
||||||
- type: heading
|
- type: heading
|
||||||
heading: Tina's iPhone
|
heading: Tina's iPhone
|
||||||
- type: custom:decluttering-card
|
- type: custom:streamline-card
|
||||||
template: iphone_entities_card
|
template: iphone_entities_card
|
||||||
variables:
|
variables:
|
||||||
- device: tinas_iphone
|
- device: tinas_iphone
|
||||||
- type: custom:decluttering-card
|
- type: custom:streamline-card
|
||||||
template: phone_info_grid
|
template: phone_info_grid
|
||||||
variables:
|
variables:
|
||||||
- device: tinas_iphone
|
- device: tinas_iphone
|
||||||
@ -4166,11 +4190,11 @@ views:
|
|||||||
cards:
|
cards:
|
||||||
- type: heading
|
- type: heading
|
||||||
heading: Kallen's iPhone
|
heading: Kallen's iPhone
|
||||||
- type: custom:decluttering-card
|
- type: custom:streamline-card
|
||||||
template: iphone_entities_card
|
template: iphone_entities_card
|
||||||
variables:
|
variables:
|
||||||
- device: kallen_iphone
|
- device: kallen_iphone
|
||||||
- type: custom:decluttering-card
|
- type: custom:streamline-card
|
||||||
template: phone_info_grid
|
template: phone_info_grid
|
||||||
variables:
|
variables:
|
||||||
- device: kallen_iphone
|
- device: kallen_iphone
|
||||||
@ -4205,7 +4229,7 @@ views:
|
|||||||
cards:
|
cards:
|
||||||
- type: heading
|
- type: heading
|
||||||
heading: Tony's iPad
|
heading: Tony's iPad
|
||||||
- type: custom:decluttering-card
|
- type: custom:streamline-card
|
||||||
template: ipad_entities_card
|
template: ipad_entities_card
|
||||||
variables:
|
variables:
|
||||||
- device: tony_s_ipad
|
- device: tony_s_ipad
|
||||||
@ -4213,7 +4237,7 @@ views:
|
|||||||
cards:
|
cards:
|
||||||
- type: heading
|
- type: heading
|
||||||
heading: Tina’s iPad
|
heading: Tina’s iPad
|
||||||
- type: custom:decluttering-card
|
- type: custom:streamline-card
|
||||||
template: ipad_entities_card
|
template: ipad_entities_card
|
||||||
variables:
|
variables:
|
||||||
- device: tinas_ipad
|
- device: tinas_ipad
|
||||||
@ -5147,7 +5171,7 @@ views:
|
|||||||
cards:
|
cards:
|
||||||
- type: heading
|
- type: heading
|
||||||
heading: ironnerd24
|
heading: ironnerd24
|
||||||
- type: custom:decluttering-card
|
- type: custom:streamline-card
|
||||||
template: xbox_card
|
template: xbox_card
|
||||||
variables:
|
variables:
|
||||||
- gamertag: tm24fan
|
- gamertag: tm24fan
|
||||||
@ -5155,7 +5179,7 @@ views:
|
|||||||
cards:
|
cards:
|
||||||
- type: heading
|
- type: heading
|
||||||
heading: kjsgamer2012
|
heading: kjsgamer2012
|
||||||
- type: custom:decluttering-card
|
- type: custom:streamline-card
|
||||||
template: xbox_card
|
template: xbox_card
|
||||||
variables:
|
variables:
|
||||||
- gamertag: kjsgamer2012
|
- gamertag: kjsgamer2012
|
||||||
@ -5163,7 +5187,7 @@ views:
|
|||||||
cards:
|
cards:
|
||||||
- type: heading
|
- type: heading
|
||||||
heading: irishpirate1988
|
heading: irishpirate1988
|
||||||
- type: custom:decluttering-card
|
- type: custom:streamline-card
|
||||||
template: xbox_card
|
template: xbox_card
|
||||||
variables:
|
variables:
|
||||||
- gamertag: irishpirate1988
|
- gamertag: irishpirate1988
|
||||||
@ -5829,22 +5853,6 @@ views:
|
|||||||
{{ "Stupid" if
|
{{ "Stupid" if
|
||||||
is_state('input_boolean.early_night_mode','on') else "Not
|
is_state('input_boolean.early_night_mode','on') else "Not
|
||||||
Stupid" }}
|
Stupid" }}
|
||||||
- type: custom:config-template-card
|
|
||||||
variables:
|
|
||||||
BOOL_STATE: states['input_boolean.toggle_testing'].state
|
|
||||||
LIGHT_STATE: states['light.living_room_lights'].state
|
|
||||||
entities:
|
|
||||||
- light.living_room_lights
|
|
||||||
- input_boolean.toggle_testing
|
|
||||||
card:
|
|
||||||
type: entities
|
|
||||||
title: '${BOOL_STATE === ''on'' ? ''Testing'' : ''Fucked Up''}'
|
|
||||||
entities:
|
|
||||||
- entity: light.living_room_lights
|
|
||||||
name: '${BOOL_STATE === ''on'' ? ''Lights'' : ''Other Lights''}'
|
|
||||||
- entity: input_boolean.toggle_testing
|
|
||||||
show_header_toggle: false
|
|
||||||
state_color: true
|
|
||||||
- type: grid
|
- type: grid
|
||||||
cards:
|
cards:
|
||||||
- type: heading
|
- type: heading
|
||||||
@ -5960,10 +5968,13 @@ views:
|
|||||||
entity: sensor.blitzortung_lightning_counter
|
entity: sensor.blitzortung_lightning_counter
|
||||||
name: Strike Counter
|
name: Strike Counter
|
||||||
state_color: false
|
state_color: false
|
||||||
- type: map
|
- type: iframe
|
||||||
geo_location_sources:
|
url: >-
|
||||||
- blitzortung
|
https://map.blitzortung.org/index.php?interactive=1&Advertisment=0&Cookies=1&InfoDiv=1&MapStyle=1&LightningRangeValue=23&LightningCheckboxChecked=1&CirclesRangeValue=3&CirclesCheckboxChecked=1&LinksRangeValue=10&LinksCheckboxChecked=1&DetectorsRangeValue=15&DetectorsCheckboxChecked=1#8.50/41.28/-84.38
|
||||||
dark_mode: true
|
aspect_ratio: 100%
|
||||||
|
grid_options:
|
||||||
|
columns: full
|
||||||
|
rows: 8
|
||||||
visibility:
|
visibility:
|
||||||
- condition: numeric_state
|
- condition: numeric_state
|
||||||
entity: sensor.blitzortung_lightning_counter
|
entity: sensor.blitzortung_lightning_counter
|
||||||
@ -5996,7 +6007,7 @@ views:
|
|||||||
- type: heading
|
- type: heading
|
||||||
heading: Forecasts
|
heading: Forecasts
|
||||||
- type: custom:weather-chart-card
|
- type: custom:weather-chart-card
|
||||||
entity: weather.home
|
entity: weather.iron_nerd_weather_station
|
||||||
show_main: true
|
show_main: true
|
||||||
show_temperature: true
|
show_temperature: true
|
||||||
show_current_condition: true
|
show_current_condition: true
|
||||||
@ -6032,9 +6043,7 @@ views:
|
|||||||
units:
|
units:
|
||||||
pressure: ''
|
pressure: ''
|
||||||
speed: ''
|
speed: ''
|
||||||
press: sensor.home_pressure
|
|
||||||
uv: sensor.home_uv_index
|
uv: sensor.home_uv_index
|
||||||
dew_point: sensor.home_dewpoint
|
|
||||||
show_wind_gust_speed: true
|
show_wind_gust_speed: true
|
||||||
show_last_changed: true
|
show_last_changed: true
|
||||||
- type: custom:weather-chart-card
|
- type: custom:weather-chart-card
|
||||||
@ -6077,12 +6086,12 @@ views:
|
|||||||
heading: Temperature
|
heading: Temperature
|
||||||
- type: custom:mini-graph-card
|
- type: custom:mini-graph-card
|
||||||
entities:
|
entities:
|
||||||
- sensor.home_temperature
|
- sensor.home_tempest_temperature
|
||||||
name: Temperature (24h)
|
name: Temperature (24h)
|
||||||
points_per_hour: 1
|
points_per_hour: 1
|
||||||
- type: custom:mini-graph-card
|
- type: custom:mini-graph-card
|
||||||
entities:
|
entities:
|
||||||
- sensor.home_temperature_feels_like
|
- sensor.home_tempest_feels_like
|
||||||
name: Feels Like (24h)
|
name: Feels Like (24h)
|
||||||
points_per_hour: 1
|
points_per_hour: 1
|
||||||
- type: custom:comfortable-environment-card
|
- type: custom:comfortable-environment-card
|
||||||
@ -6204,18 +6213,18 @@ views:
|
|||||||
- entity: sensor.home_wind_gust
|
- entity: sensor.home_wind_gust
|
||||||
name: Gust
|
name: Gust
|
||||||
format: precision1
|
format: precision1
|
||||||
- entity: sensor.home_relative_humidity
|
- entity: sensor.home_tempest_humidity
|
||||||
type: custom:multiple-entity-row
|
type: custom:multiple-entity-row
|
||||||
name: Moisture
|
name: Moisture
|
||||||
state_header: Humidity
|
state_header: Humidity
|
||||||
entities:
|
entities:
|
||||||
- entity: sensor.home_dewpoint
|
- entity: sensor.home_tempest_dew_point
|
||||||
name: Dew Point
|
name: Dew Point
|
||||||
- entity: sensor.home_pressure
|
- entity: sensor.home_pressure
|
||||||
name: Barometric Pressure
|
name: Barometric Pressure
|
||||||
- entity: sensor.current_season
|
- entity: sensor.current_season
|
||||||
icon: mdi:leaf
|
icon: mdi:leaf
|
||||||
- entity: sensor.home_uv_index
|
- entity: sensor.home_tempest_uv_index
|
||||||
name: UV Index
|
name: UV Index
|
||||||
- entity: sensor.pirateweather_cloud_coverage
|
- entity: sensor.pirateweather_cloud_coverage
|
||||||
name: Cloud Coverage
|
name: Cloud Coverage
|
||||||
@ -6256,7 +6265,7 @@ views:
|
|||||||
text_width: 5em
|
text_width: 5em
|
||||||
bar_radius: 4px
|
bar_radius: 4px
|
||||||
- type: custom:uv-index-card
|
- type: custom:uv-index-card
|
||||||
entity: sensor.home_uv_index
|
entity: sensor.home_tempest_uv_index
|
||||||
max_columns: 4
|
max_columns: 4
|
||||||
icon: mdi:weather-cloudy
|
icon: mdi:weather-cloudy
|
||||||
cards: []
|
cards: []
|
||||||
@ -6718,42 +6727,42 @@ views:
|
|||||||
heading: General Stats
|
heading: General Stats
|
||||||
- type: entities
|
- type: entities
|
||||||
entities:
|
entities:
|
||||||
- entity: sensor.home_temperature
|
- entity: sensor.home_tempest_temperature
|
||||||
type: custom:multiple-entity-row
|
type: custom:multiple-entity-row
|
||||||
name: Temperature
|
name: Temperature
|
||||||
state_header: Defiance
|
state_header: Defiance
|
||||||
entities:
|
entities:
|
||||||
- entity: sensor.ashland_temperature
|
- entity: sensor.ashland_temperature
|
||||||
name: Ashland
|
name: Ashland
|
||||||
- entity: sensor.home_temperature_feels_like
|
- entity: sensor.home_tempest_feels_like
|
||||||
type: custom:multiple-entity-row
|
type: custom:multiple-entity-row
|
||||||
name: Feels Like
|
name: Feels Like
|
||||||
state_header: Defiance
|
state_header: Defiance
|
||||||
entities:
|
entities:
|
||||||
- entity: sensor.ashland_temperature_feels_like
|
- entity: sensor.ashland_temperature_feels_like
|
||||||
name: Ashland
|
name: Ashland
|
||||||
- entity: sensor.home_relative_humidity
|
- entity: sensor.home_tempest_humidity
|
||||||
type: custom:multiple-entity-row
|
type: custom:multiple-entity-row
|
||||||
name: Humidity
|
name: Humidity
|
||||||
state_header: Defiance
|
state_header: Defiance
|
||||||
entities:
|
entities:
|
||||||
- entity: sensor.ashland_relative_humidity
|
- entity: sensor.ashland_relative_humidity
|
||||||
name: Ashland
|
name: Ashland
|
||||||
- entity: sensor.home_dewpoint
|
- entity: sensor.home_tempest_dew_point
|
||||||
type: custom:multiple-entity-row
|
type: custom:multiple-entity-row
|
||||||
name: Dew Point
|
name: Dew Point
|
||||||
state_header: Defiance
|
state_header: Defiance
|
||||||
entities:
|
entities:
|
||||||
- entity: sensor.ashland_dewpoint
|
- entity: sensor.ashland_dewpoint
|
||||||
name: Ashland
|
name: Ashland
|
||||||
- entity: sensor.home_pressure
|
- entity: sensor.home_tempest_cloud_sensors_sea_level_pressure
|
||||||
type: custom:multiple-entity-row
|
type: custom:multiple-entity-row
|
||||||
name: Pressure
|
name: Pressure
|
||||||
state_header: Defiance
|
state_header: Defiance
|
||||||
entities:
|
entities:
|
||||||
- entity: sensor.ashland_pressure
|
- entity: sensor.ashland_pressure
|
||||||
name: Ashland
|
name: Ashland
|
||||||
- entity: sensor.pirateweather_uv_index
|
- entity: sensor.home_tempest_uv_index
|
||||||
type: custom:multiple-entity-row
|
type: custom:multiple-entity-row
|
||||||
name: UV Index
|
name: UV Index
|
||||||
state_header: Defiance
|
state_header: Defiance
|
||||||
@ -6767,7 +6776,7 @@ views:
|
|||||||
entities:
|
entities:
|
||||||
- entity: sensor.pirateweather_ashland_cloud_coverage
|
- entity: sensor.pirateweather_ashland_cloud_coverage
|
||||||
name: Ashland
|
name: Ashland
|
||||||
- entity: sensor.kdfi_visibility
|
- entity: sensor.home_tempest_cloud_sensors_visibility
|
||||||
type: custom:multiple-entity-row
|
type: custom:multiple-entity-row
|
||||||
name: Visibility
|
name: Visibility
|
||||||
state_header: Defiance
|
state_header: Defiance
|
||||||
|
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user