Compare commits
7 Commits
main_dash_
...
2025.5.3
Author | SHA1 | Date | |
---|---|---|---|
f15b01da8e
|
|||
e2e554dcd5
|
|||
d16cd1afe9
|
|||
4e7306fb00
|
|||
fae4f18ab9
|
|||
3776b6e413
|
|||
9cd85f5b9f
|
@ -1386,6 +1386,9 @@ views:
|
|||||||
name: Wakeup Fade - Day
|
name: Wakeup Fade - Day
|
||||||
- entity: input_number.wakeup_lights_fade_night
|
- entity: input_number.wakeup_lights_fade_night
|
||||||
name: Wakeup Fade - Night
|
name: Wakeup Fade - Night
|
||||||
|
- entity: input_number.sunset_lights_outdoor_lux_threshold
|
||||||
|
name: Sunset Lights Threshold
|
||||||
|
- entity: input_boolean.sunset_lights_triggered
|
||||||
show_header_toggle: false
|
show_header_toggle: false
|
||||||
state_color: true
|
state_color: true
|
||||||
- type: entities
|
- type: entities
|
||||||
|
2956
main_dashboard.yaml
2956
main_dashboard.yaml
File diff suppressed because it is too large
Load Diff
@ -3706,7 +3706,14 @@ views:
|
|||||||
entity: binary_sensor.lightning_warning
|
entity: binary_sensor.lightning_warning
|
||||||
state: 'on'
|
state: 'on'
|
||||||
- type: custom:mushroom-template-badge
|
- type: custom:mushroom-template-badge
|
||||||
content: It is currently raining!
|
content: >-
|
||||||
|
{% if
|
||||||
|
states('sensor.home_tempest_cloud_sensors_precipitation_intensity')
|
||||||
|
not in ['unavailable','unknown','no_rain'] %}
|
||||||
|
{{ states('sensor.home_tempest_cloud_sensors_precipitation_intensity') | replace('_',' ') | title }}
|
||||||
|
{% else %}
|
||||||
|
It is currently raining!
|
||||||
|
{% endif %}
|
||||||
icon: mdi:weather-rainy
|
icon: mdi:weather-rainy
|
||||||
color: |-
|
color: |-
|
||||||
{% if is_state('binary_sensor.raining','on') %}
|
{% if is_state('binary_sensor.raining','on') %}
|
||||||
@ -3786,6 +3793,22 @@ views:
|
|||||||
- condition: state
|
- condition: state
|
||||||
entity: binary_sensor.emma_bedroom_door
|
entity: binary_sensor.emma_bedroom_door
|
||||||
state: 'on'
|
state: 'on'
|
||||||
|
- type: custom:mushroom-template-badge
|
||||||
|
content: '{{ states(entity) | title }}'
|
||||||
|
icon: fas:shower
|
||||||
|
entity: input_boolean.shower_mode
|
||||||
|
label: Shower Mode
|
||||||
|
color: var(--warning-color)
|
||||||
|
tap_action:
|
||||||
|
action: none
|
||||||
|
hold_action:
|
||||||
|
action: none
|
||||||
|
double_tap_action:
|
||||||
|
action: none
|
||||||
|
visibility:
|
||||||
|
- condition: state
|
||||||
|
entity: input_boolean.shower_mode
|
||||||
|
state: 'on'
|
||||||
- type: custom:mushroom-template-badge
|
- type: custom:mushroom-template-badge
|
||||||
content: |-
|
content: |-
|
||||||
{% if is_state('input_boolean.school_cancelled','on') %}
|
{% if is_state('input_boolean.school_cancelled','on') %}
|
||||||
|
Reference in New Issue
Block a user