diff --git a/.gitignore b/.gitignore index a254933..52d47a2 100644 --- a/.gitignore +++ b/.gitignore @@ -38,7 +38,7 @@ media/ custom_components/ custom_logs/ snapshots/ -rtl_433/ +rtl_433*/ tts/ /lovelace/private model_cache/ diff --git a/automations/cameras/cycle_cameras.yaml b/automations/cameras/cycle_cameras.yaml deleted file mode 100644 index 2575626..0000000 --- a/automations/cameras/cycle_cameras.yaml +++ /dev/null @@ -1,303 +0,0 @@ -alias: Cycle Cameras -id: automation_cycle_cameras -mode: queued - -trigger: - - - id: automatic - platform: homeassistant - event: start - - - id: automatic - platform: time_pattern - seconds: "/10" - - - id: cam01 - platform: state - entity_id: binary_sensor.frigate_cam01_person_occupancy - from: 'off' - to: 'on' - - id: cam03 - platform: state - entity_id: binary_sensor.frigate_cam03_person_occupancy - from: 'off' - to: 'on' - - id: cam04 - platform: state - entity_id: binary_sensor.frigate_cam04_person_occupancy - from: 'off' - to: 'on' - - id: cam06 - platform: state - entity_id: binary_sensor.frigate_cam06_person_occupancy - from: 'off' - to: 'on' - - id: cam07 - platform: state - entity_id: binary_sensor.frigate_cam07_person_occupancy - from: 'off' - to: 'on' - - id: cam08 - platform: state - entity_id: binary_sensor.frigate_cam08_person_occupancy - from: 'off' - to: 'on' - - id: cam12 - platform: state - entity_id: binary_sensor.frigate_cam12_person_occupancy - from: 'off' - to: 'on' - - id: cam13 - platform: state - entity_id: binary_sensor.frigate_cam13_person_occupancy - from: 'off' - to: 'on' - - id: cam14 - platform: state - entity_id: binary_sensor.frigate_cam14_person_occupancy - from: 'off' - to: 'on' - - id: cam19 - platform: state - entity_id: binary_sensor.frigate_cam19_person_occupancy - from: 'off' - to: 'on' - -action: - - service: input_select.select_next - data: {} - target: - entity_id: input_select.master_bedroom_camera - - - choose: - - conditions: - - condition: trigger - id: cam01 - - condition: state - entity_id: input_boolean.indoor_camera_lock - state: 'off' - sequence: - - service: input_select.select_option - target: - entity_id: input_select.indoor_camera_cycle - data: - option: Blue Room - - conditions: - - condition: trigger - id: cam03 - - condition: state - entity_id: input_boolean.indoor_camera_lock - state: 'off' - sequence: - - service: input_select.select_option - target: - entity_id: input_select.indoor_camera_cycle - data: - option: Computer Area - - conditions: - - condition: trigger - id: cam04 - - condition: state - entity_id: input_boolean.outdoor_camera_lock - state: 'off' - sequence: - - service: input_select.select_option - target: - entity_id: input_select.outdoor_camera_cycle - data: - option: Garage - - conditions: - - condition: trigger - id: cam06 - - condition: state - entity_id: input_boolean.indoor_camera_lock - state: 'off' - sequence: - - service: input_select.select_option - target: - entity_id: input_select.indoor_camera_cycle - data: - option: Bedroom Left - - conditions: - - condition: trigger - id: cam07 - - condition: state - entity_id: input_boolean.indoor_camera_lock - state: 'off' - sequence: - - service: input_select.select_option - target: - entity_id: input_select.indoor_camera_cycle - data: - option: Bedroom Right - - conditions: - - condition: trigger - id: cam08 - - condition: state - entity_id: input_boolean.indoor_camera_lock - state: 'off' - sequence: - - service: input_select.select_option - target: - entity_id: input_select.indoor_camera_cycle - data: - option: Nursery - - conditions: - - condition: trigger - id: cam12 - - condition: state - entity_id: input_boolean.indoor_camera_lock - state: 'off' - sequence: - - service: input_select.select_option - target: - entity_id: input_select.indoor_camera_cycle - data: - option: Kitchen - - conditions: - - condition: trigger - id: cam13 - - condition: state - entity_id: input_boolean.indoor_camera_lock - state: 'off' - sequence: - - service: input_select.select_option - target: - entity_id: input_select.indoor_camera_cycle - data: - option: Front Room - - conditions: - - condition: trigger - id: cam14 - - condition: state - entity_id: input_boolean.outdoor_camera_lock - state: 'off' - sequence: - - service: input_select.select_option - target: - entity_id: input_select.outdoor_camera_cycle - data: - option: Back Yard - - conditions: - - condition: trigger - id: cam19 - - condition: state - entity_id: input_boolean.outdoor_camera_lock - state: 'off' - sequence: - - service: input_select.select_option - target: - entity_id: input_select.outdoor_camera_cycle - data: - option: Front Porch - - default: - - choose: - - conditions: - - condition: trigger - id: automatic - - condition: state - entity_id: input_boolean.indoor_camera_lock - state: 'off' - - condition: or - conditions: - - condition: and - conditions: - - condition: state - entity_id: input_select.indoor_camera_cycle - state: Blue Room - - condition: state - entity_id: binary_sensor.frigate_cam01_person_occupancy - state: 'off' - - condition: and - conditions: - - condition: state - entity_id: input_select.indoor_camera_cycle - state: Computer Area - - condition: state - entity_id: binary_sensor.frigate_cam03_person_occupancy - state: 'off' - - condition: and - conditions: - - condition: state - entity_id: input_select.indoor_camera_cycle - state: Bedroom Left - - condition: state - entity_id: binary_sensor.frigate_cam06_person_occupancy - state: 'off' - - condition: and - conditions: - - condition: state - entity_id: input_select.indoor_camera_cycle - state: Bedroom Right - - condition: state - entity_id: binary_sensor.frigate_cam07_person_occupancy - state: 'off' - - condition: and - conditions: - - condition: state - entity_id: input_select.indoor_camera_cycle - state: Nursery - - condition: state - entity_id: binary_sensor.frigate_cam08_person_occupancy - state: 'off' - - condition: and - conditions: - - condition: state - entity_id: input_select.indoor_camera_cycle - state: Kitchen - - condition: state - entity_id: binary_sensor.frigate_cam12_person_occupancy - state: 'off' - - condition: and - conditions: - - condition: state - entity_id: input_select.indoor_camera_cycle - state: Front Room - - condition: state - entity_id: binary_sensor.frigate_cam13_person_occupancy - state: 'off' - sequence: - - service: input_select.select_next - data: {} - target: - entity_id: input_select.indoor_camera_cycle - - - choose: - - conditions: - - condition: trigger - id: automatic - - condition: state - entity_id: input_boolean.outdoor_camera_lock - state: 'off' - - condition: or - conditions: - - condition: and - conditions: - - condition: state - entity_id: input_select.outdoor_camera_cycle - state: Garage - - condition: state - entity_id: binary_sensor.frigate_cam04_person_occupancy - state: 'off' - - condition: and - conditions: - - condition: state - entity_id: input_select.outdoor_camera_cycle - state: Back Yard - - condition: state - entity_id: binary_sensor.frigate_cam14_person_occupancy - state: 'off' - - condition: and - conditions: - - condition: state - entity_id: input_select.outdoor_camera_cycle - state: Front Porch - - condition: state - entity_id: binary_sensor.frigate_cam19_person_occupancy - state: 'off' - sequence: - - service: input_select.select_next - data: {} - target: - entity_id: input_select.outdoor_camera_cycle \ No newline at end of file diff --git a/automations/people/almost_bedtime.yaml b/automations/people/almost_bedtime.yaml index de226da..64171de 100644 --- a/automations/people/almost_bedtime.yaml +++ b/automations/people/almost_bedtime.yaml @@ -37,13 +37,13 @@ action: - media_player.bathroom_mini - media_player.kitchen - media_player.great_room - media_content_id: media-source://media_source/local/sounds/tts/almost_bedtime.mp3 + media_content_id: media-source://media_source/tts/almost_bedtime.mp3 volume: 0.7 default: - service: script.make_clever_announcement data: entity_id: media_player.announcements - media_content_id: media-source://media_source/local/sounds/tts/almost_bedtime.mp3 + media_content_id: media-source://media_source/tts/almost_bedtime.mp3 volume: 0.7 # Because of how we're calling the script, the automation won't continue until the script is done, so we don't need a delay here diff --git a/automations/people/bedtime.yaml b/automations/people/bedtime.yaml index a7b55e3..cbb6004 100644 --- a/automations/people/bedtime.yaml +++ b/automations/people/bedtime.yaml @@ -2,8 +2,8 @@ initial_state: 'on' alias: 'Bedtime' id: automation_bedtime trigger: - - platform: homeassistant - event: start + # - platform: homeassistant + # event: start - platform: state entity_id: diff --git a/automations/people/goodnight_kids.yaml b/automations/people/goodnight_kids.yaml index d1e7a02..3a0e990 100644 --- a/automations/people/goodnight_kids.yaml +++ b/automations/people/goodnight_kids.yaml @@ -40,23 +40,23 @@ action: {% if is_state('input_boolean.emmett_home', 'on') %} {% if is_state('input_boolean.bridget_home', 'on') %} {% if is_state('input_boolean.ebin_home', 'on') %} - media-source://media_source/local/sounds/tts/goodnight_emmett_bridget_ebin.mp3 + media-source://media_source/tts/goodnight_emmett_bridget_ebin.mp3 {% else %} - media-source://media_source/local/sounds/tts/goodnight_emmett_bridget.mp3 + media-source://media_source/tts/goodnight_emmett_bridget.mp3 {% endif %} {% elif is_state('input_boolean.ebin_home','on') %} - media-source://media_source/local/sounds/tts/goodnight_emmett_ebin.mp3 + media-source://media_source/tts/goodnight_emmett_ebin.mp3 {% else %} - media-source://media_source/local/sounds/tts/goodnight_emmett.mp3 + media-source://media_source/tts/goodnight_emmett.mp3 {% endif %} {% elif is_state('input_boolean.bridget_home', 'on') %} {% if is_state('input_boolean.ebin_home', 'on') %} - media-source://media_source/local/sounds/tts/goodnight_bridget_ebin.mp3 + media-source://media_source/tts/goodnight_bridget_ebin.mp3 {% else %} - media-source://media_source/local/sounds/tts/goodnight_bridget.mp3 + media-source://media_source/tts/goodnight_bridget.mp3 {% endif %} {% elif is_state('input_boolean.ebin_home', 'on') %} - media-source://media_source/local/sounds/tts/goodnight_ebin.mp3 + media-source://media_source/tts/goodnight_ebin.mp3 {% endif %} volume: 0.7 default: @@ -67,23 +67,23 @@ action: {% if is_state('input_boolean.emmett_home', 'on') %} {% if is_state('input_boolean.bridget_home', 'on') %} {% if is_state('input_boolean.ebin_home', 'on') %} - media-source://media_source/local/sounds/tts/goodnight_emmett_bridget_ebin.mp3 + media-source://media_source/tts/goodnight_emmett_bridget_ebin.mp3 {% else %} - media-source://media_source/local/sounds/tts/goodnight_emmett_bridget.mp3 + media-source://media_source/tts/goodnight_emmett_bridget.mp3 {% endif %} {% elif is_state('input_boolean.ebin_home','on') %} - media-source://media_source/local/sounds/tts/goodnight_emmett_ebin.mp3 + media-source://media_source/tts/goodnight_emmett_ebin.mp3 {% else %} - media-source://media_source/local/sounds/tts/goodnight_emmett.mp3 + media-source://media_source/tts/goodnight_emmett.mp3 {% endif %} {% elif is_state('input_boolean.bridget_home', 'on') %} {% if is_state('input_boolean.ebin_home', 'on') %} - media-source://media_source/local/sounds/tts/goodnight_bridget_ebin.mp3 + media-source://media_source/tts/goodnight_bridget_ebin.mp3 {% else %} - media-source://media_source/local/sounds/tts/goodnight_bridget.mp3 + media-source://media_source/tts/goodnight_bridget.mp3 {% endif %} {% elif is_state('input_boolean.ebin_home', 'on') %} - media-source://media_source/local/sounds/tts/goodnight_ebin.mp3 + media-source://media_source/tts/goodnight_ebin.mp3 {% endif %} volume: 0.7 diff --git a/automations/rooms/front_porch_lights.yaml b/automations/rooms/front_porch_lights.yaml index d1d6b7d..2ed2287 100644 --- a/automations/rooms/front_porch_lights.yaml +++ b/automations/rooms/front_porch_lights.yaml @@ -8,18 +8,24 @@ trigger: entity_id: - binary_sensor.front_porch_motion - binary_sensor.front_porch_person_occupancy + - binary_sensor.front_yard_person_occupancy to: "on" - platform: state id: motion_off - entity_id: binary_sensor.front_porch_motion, binary_sensor.front_porch_person_occupancy + entity_id: + - binary_sensor.front_porch_motion + - binary_sensor.front_porch_person_occupancy + - binary_sensor.front_yard_person_occupancy to: "off" for: minutes: 5 - platform: state id: door_open - entity_id: binary_sensor.garage_door, binary_sensor.outer_garage_door_contact #, binary_sensor.outer_garage_door + entity_id: + - binary_sensor.garage_door + - binary_sensor.outer_garage_door_contact #, binary_sensor.outer_garage_door to: "on" - platform: state @@ -33,34 +39,15 @@ trigger: id: too_dark entity_id: binary_sensor.front_porch_naturally_lit to: "off" + for: + seconds: 30 - platform: state id: too_bright entity_id: binary_sensor.front_porch_naturally_lit to: "on" - -condition: - # - condition: or - # conditions: - # - alias: "Front porch not naturally lit" - # condition: state - # entity_id: binary_sensor.front_porch_naturally_lit - # state: 'off' - - # - alias: "Light is already off" - # condition: state - # entity_id: light.front_porch_overhead - # state: 'off' - - - alias: "It is not late evening" - condition: state - entity_id: binary_sensor.late_evening - state: 'off' - - - alias: "It is not night" - condition: state - entity_id: binary_sensor.night - state: 'off' + for: + seconds: 30 action: - choose: @@ -72,6 +59,16 @@ action: entity_id: light.front_porch_overhead state: 'off' + - alias: "It is not late evening" + condition: state + entity_id: binary_sensor.late_evening + state: 'off' + + - alias: "It is not night" + condition: state + entity_id: binary_sensor.night + state: 'off' + - alias: "Front porch not naturally lit" condition: state entity_id: binary_sensor.front_porch_naturally_lit @@ -113,6 +110,26 @@ action: target: entity_id: light.front_porch_overhead + - conditions: + - condition: trigger + id: "too_dark" + + - condition: state + entity_id: light.front_porch_overhead + state: 'off' + + - condition: state + entity_id: + - binary_sensor.front_porch_motion + - binary_sensor.front_porch_person_occupancy + - binary_sensor.front_yard_person_occupancy + state: 'on' + + sequence: + - service: light.turn_on + target: + entity_id: light.front_porch_overhead + - conditions: - condition: state entity_id: binary_sensor.front_porch_motion diff --git a/automations/things/keurig_done.yaml b/automations/things/keurig_done.yaml index 1c43b6e..11986f3 100644 --- a/automations/things/keurig_done.yaml +++ b/automations/things/keurig_done.yaml @@ -54,4 +54,4 @@ action: - alias: "Announce that the coffee is ready" service: script.make_clever_announcement data: - media_content_id: media-source://media_source/local/sounds/tts/coffee_ready.mp3 + media_content_id: media-source://media_source/tts/coffee_ready.mp3 diff --git a/automations/things/kitchen_fridge_door.yaml b/automations/things/kitchen_fridge_door.yaml index 8e4f80c..f490e06 100644 --- a/automations/things/kitchen_fridge_door.yaml +++ b/automations/things/kitchen_fridge_door.yaml @@ -46,7 +46,7 @@ action: sequence: - service: script.make_clever_announcement data: - media_content_id: media-source://media_source/local/sounds/tts/kitchen_fridge_open_too_long.mp3 + media_content_id: media-source://media_source/tts/kitchen_fridge_open_too_long.mp3 - choose: - conditions: diff --git a/components/binary_sensors/rooms/master_bathroom_occupied.yaml b/components/binary_sensors/rooms/master_bathroom_occupied.yaml index 8f6a2d6..6f91130 100644 --- a/components/binary_sensors/rooms/master_bathroom_occupied.yaml +++ b/components/binary_sensors/rooms/master_bathroom_occupied.yaml @@ -18,7 +18,7 @@ observations: # platform: state # to_state: 'on' - - entity_id: binary_sensor.master_bathroom_hygrostat + - entity_id: binary_sensor.master_bathroom_too_humid prob_given_true: .99 prob_given_false: 0.05 platform: state diff --git a/components/binary_sensors/rooms/utility_room_occupied.yaml b/components/binary_sensors/rooms/utility_room_occupied.yaml index 0ce2cae..3c145c1 100644 --- a/components/binary_sensors/rooms/utility_room_occupied.yaml +++ b/components/binary_sensors/rooms/utility_room_occupied.yaml @@ -18,7 +18,7 @@ observations: # platform: state # to_state: 'on' - - entity_id: binary_sensor.utility_room_hygrostat + - entity_id: binary_sensor.utility_room_too_humid prob_given_true: .99 prob_given_false: 0.05 platform: state diff --git a/components/packages/automatic_sprinkler_system.yaml b/components/packages/automatic_sprinkler_system.yaml index d915b9a..7537813 100644 --- a/components/packages/automatic_sprinkler_system.yaml +++ b/components/packages/automatic_sprinkler_system.yaml @@ -435,43 +435,6 @@ automation: data: message: "{{now().strftime('%Y-%m-%d')}}T{{now().strftime('%H:%M:%S.%f')}},{{states('sensor.ecowitt_wh40_21917_precipitation')}},{{states('binary_sensor.is_raining')}},{{state_attr('binary_sensor.is_raining','sample_count')}},{{state_attr('binary_sensor.is_raining','sample_duration')}},{{state_attr('binary_sensor.is_raining','min_gradient')}},{{state_attr('binary_sensor.is_raining','gradient')}}" - - alias: "Log Soil Moisture" - id: 362fbc8d-64f1-47dd-a686-e460e9c18690 - trigger: - - platform: state - entity_id: input_boolean.log_soil_moisture - from: "off" - to: "on" - - - platform: state - entity_id: sensor.fineoffset_wh51_00f935_moisture - not_to: - - "unknown" - - "unavailable" - - - platform: state - entity_id: sensor.fineoffset_wh51_0ce593_moisture - not_to: - - "unknown" - - "unavailable" - - - platform: state - entity_id: sensor.fineoffset_wh51_0d1e11_moisture - not_to: - - "unknown" - - "unavailable" - - condition: - - condition: state - entity_id: input_boolean.log_soil_moisture - state: "on" - action: - - service: notify.send_message - target: - entity_id: notify.soil_moisture - data: - message: "{{now().strftime('%Y-%m-%d')}}T{{now().strftime('%H:%M:%S.%f')}},{{states('sensor.fineoffset_wh51_00f935_moisture')}},{{states('sensor.fineoffset_wh51_0ce593_moisture')}},{{states('sensor.fineoffset_wh51_0d1e11_moisture')}}" - - alias: "Sprinkler: Reset After Automatic Run" id: automation_sprinkler_reset_after_automatic_run trigger: diff --git a/components/packages/clever_announcements.yaml b/components/packages/clever_announcements.yaml index 664acc3..b3a074b 100644 --- a/components/packages/clever_announcements.yaml +++ b/components/packages/clever_announcements.yaml @@ -15,7 +15,7 @@ script: media_content_id: description: "Media Content ID to announce" - example: media-source://media_source/local/sounds/tts/welcome_to_daddys_house.mp3 + example: media-source://media_source/tts/welcome_to_daddys_house.mp3 selector: text: @@ -42,7 +42,7 @@ script: # If YTube Music Player is not in use, play the announcement over the media_player.announcements speaker group media_player: '{{ iif(entity_id is defined, entity_id, iif(is_state("media_player.ytube_music_player","playing") or is_state("media_player.ytube_music_player","idle") or is_state("media_player.ytube_music_player","paused"),state_attr("media_player.ytube_music_player","remote_player_id"),"media_player.announcements")) }}' remote_player: '{{ state_attr("media_player.ytube_music_player","remote_player_id") }}' - content_id: '{{ iif(media_content_id is defined,media_content_id,"media-source://media_source/local/sounds/tts/welcome_to_daddys_house.mp3") }}' + content_id: '{{ iif(media_content_id is defined,media_content_id,"media-source://media_source/tts/welcome_to_daddys_house.mp3") }}' content_type: '{{ iif(media_content_type is defined,media_content_type,"audio/mpeg") }}' volume: "{{ iif(volume is defined,volume,0.6) }}" original_volume: '{{ iif(is_state("media_player.ytube_music_player","off"),0.0,state_attr(state_attr("media_player.ytube_music_player","remote_player_id"), "volume_level")) }}' diff --git a/components/packages/esphome_devices.yaml b/components/packages/esphome_devices.yaml new file mode 100644 index 0000000..aeff13f --- /dev/null +++ b/components/packages/esphome_devices.yaml @@ -0,0 +1,37 @@ +template: + - binary_sensor: + - name: White Bed Occupied + state: "{{ is_state('binary_sensor.bed_presence_2d14a4_bed_occupied_either', 'on') }}" + icon: > + {% if is_state("binary_sensor.white_bed_occupied", "on") %} + mdi:bed-single + {% else %} + mdi:bed-single-outline + {% endif %} + + - name: Master Bed Occupied + state: "{{ is_state('binary_sensor.bed_presence_2d14a4_bed_occupied_either', 'on') }}" + icon: > + {% if is_state("binary_sensor.master_bed_occupied", "on") %} + mdi:bed-king + {% else %} + mdi:bed-king-outline + {% endif %} + + - name: Master Bed Left Occupied + state: "{{ is_state('binary_sensor.bed_presence_c175a4_bed_occupied_left', 'on') }}" + icon: > + {% if is_state("binary_sensor.master_bed_left_occupied", "on") %} + mdi:bed-king + {% else %} + mdi:bed-king-outline + {% endif %} + + - name: Master Bed Right Occupied + state: "{{ is_state('binary_sensor.bed_presence_c175a4_bed_occupied_right', 'on') }}" + icon: > + {% if is_state("binary_sensor.master_bed_right_occupied", "on") %} + mdi:bed-king + {% else %} + mdi:bed-king-outline + {% endif %} \ No newline at end of file diff --git a/components/packages/plant_sensor_batteries.yaml b/components/packages/plant_sensor_batteries.yaml index 756b49c..0b09939 100644 --- a/components/packages/plant_sensor_batteries.yaml +++ b/components/packages/plant_sensor_batteries.yaml @@ -13,7 +13,5 @@ sensor: name: Lowest Ecowitt Battery type: min entity_ids: - - sensor.fineoffset_wh51_0d1e11_battery - - sensor.fineoffset_wh51_00f935_battery - sensor.fineoffset_wh51_0ce593_battery diff --git a/components/packages/plants.yaml b/components/packages/plants.yaml index 61aa4d2..99779fb 100644 --- a/components/packages/plants.yaml +++ b/components/packages/plants.yaml @@ -44,19 +44,6 @@ plant: min_conductivity: 10 max_conductivity: 5700 - fineoffset_wh51_00f935: - sensors: - moisture: sensor.fineoffset_wh51_00f935_moisture - temperature: sensor.outdoor_temperature - battery: sensor.fineoffset_wh51_00f935_battery - brightness: sensor.outdoors_mean_illuminance - min_moisture: 15 - max_moisture: 80 - min_brightness: 200 - max_brightness: 300000 - min_temperature: -30 - max_temperature: 120 - fineoffset_wh51_0ce593: sensors: moisture: sensor.fineoffset_wh51_0ce593_moisture @@ -69,16 +56,3 @@ plant: max_brightness: 300000 min_temperature: -30 max_temperature: 120 - - fineoffset_wh51_0d1e11: - sensors: - moisture: sensor.fineoffset_wh51_0d1e11_moisture - temperature: sensor.outdoor_temperature - battery: sensor.fineoffset_wh51_0d1e11_battery - brightness: sensor.outdoors_mean_illuminance - min_moisture: 15 - max_moisture: 80 - min_brightness: 200 - max_brightness: 300000 - min_temperature: -30 - max_temperature: 120 diff --git a/components/packages/rtl_433_devices/daisy_soil_moisture.yaml b/components/packages/rtl_433_devices/daisy_soil_moisture.yaml deleted file mode 100644 index 0df00fb..0000000 --- a/components/packages/rtl_433_devices/daisy_soil_moisture.yaml +++ /dev/null @@ -1,44 +0,0 @@ -# White Ziptie -mqtt: - sensor: - - name: "Timestamp" - device_class: timestamp - icon: mdi:clock-in - state_topic: "rtl_433/9b13b3f4-rtl433/devices/Fineoffset-WH51/00f935/time" - force_update: true - entity_category: diagnostic - unique_id: Fineoffset-WH51-00f935-UTC - device: - identifiers: Fineoffset-WH51-00f935 - name: Fineoffset-WH51-00f935 - model: Fineoffset-WH51 - manufacturer: rtl_433 - - - name: "Battery" - device_class: battery - unit_of_measurement: "%" - value_template: "{{ (float(value) * 99 + 1) | round(0) }}" - state_class: measurement - entity_category: diagnostic - state_topic: "rtl_433/9b13b3f4-rtl433/devices/Fineoffset-WH51/00f935/battery_ok" - force_update: true - unique_id: Fineoffset-WH51-00f935-B - device: - identifiers: Fineoffset-WH51-00f935 - name: Fineoffset-WH51-00f935 - model: Fineoffset-WH51 - manufacturer: rtl_433 - - - name: "Moisture" - device_class: moisture - unit_of_measurement: "%" - value_template: "{{ value|float }}" - state_class: measurement - state_topic: "rtl_433/9b13b3f4-rtl433/devices/Fineoffset-WH51/00f935/moisture" - force_update: true - unique_id: Fineoffset-WH51-00f935-H - device: - identifiers: Fineoffset-WH51-00f935 - name: Fineoffset-WH51-00f935 - model: Fineoffset-WH51 - manufacturer: rtl_433 diff --git a/components/packages/rtl_433_devices/outdoor_thermostat.yaml b/components/packages/rtl_433_devices/outdoor_thermostat.yaml index 08f89dd..3c43287 100644 --- a/components/packages/rtl_433_devices/outdoor_thermostat.yaml +++ b/components/packages/rtl_433_devices/outdoor_thermostat.yaml @@ -3,7 +3,7 @@ mqtt: - name: "Timestamp" device_class: timestamp icon: mdi:clock-in - state_topic: "rtl_433/9b13b3f4-rtl433/devices/LaCrosse-TX141THBv2/0/106/time" + state_topic: "rtl_433/9b13b3f4-rtl433/devices/LaCrosse-TX141THBv2/0/233/time" force_update: true entity_category: diagnostic unique_id: LaCrosse-TX141THBv2-0-UTC @@ -19,7 +19,7 @@ mqtt: value_template: "{{ (float(value) * 99 + 1) | round(0) }}" state_class: measurement entity_category: diagnostic - state_topic: "rtl_433/9b13b3f4-rtl433/devices/LaCrosse-TX141THBv2/0/106/battery_ok" + state_topic: "rtl_433/9b13b3f4-rtl433/devices/LaCrosse-TX141THBv2/0/233/battery_ok" force_update: true unique_id: LaCrosse-TX141THBv2-0-B device: @@ -33,7 +33,7 @@ mqtt: unit_of_measurement: "°C" value_template: "{{ value|float }}" state_class: measurement - state_topic: "rtl_433/9b13b3f4-rtl433/devices/LaCrosse-TX141THBv2/0/106/temperature_C" + state_topic: "rtl_433/9b13b3f4-rtl433/devices/LaCrosse-TX141THBv2/0/233/temperature_C" force_update: true unique_id: LaCrosse-TX141THBv2-0-T device: @@ -47,7 +47,7 @@ mqtt: unit_of_measurement: "%" value_template: "{{ value|float }}" state_class: measurement - state_topic: "rtl_433/9b13b3f4-rtl433/devices/LaCrosse-TX141THBv2/0/106/humidity" + state_topic: "rtl_433/9b13b3f4-rtl433/devices/LaCrosse-TX141THBv2/0/233/humidity" force_update: true unique_id: LaCrosse-TX141THBv2-0-H device: diff --git a/components/packages/rtl_433_devices/sunflower_box_moisture.yaml b/components/packages/rtl_433_devices/sunflower_box_moisture.yaml deleted file mode 100644 index 019d14d..0000000 --- a/components/packages/rtl_433_devices/sunflower_box_moisture.yaml +++ /dev/null @@ -1,44 +0,0 @@ -# Yellow Ziptie -mqtt: - sensor: - - name: "Timestamp" - device_class: timestamp - icon: mdi:clock-in - state_topic: "rtl_433/9b13b3f4-rtl433/devices/Fineoffset-WH51/0d1e11/time" - force_update: true - entity_category: diagnostic - unique_id: Fineoffset-WH51-0d1e11-UTC - device: - identifiers: Fineoffset-WH51-0d1e11 - name: Fineoffset-WH51-0d1e11 - model: Fineoffset-WH51 - manufacturer: rtl_433 - - - name: "Battery" - device_class: battery - unit_of_measurement: "%" - value_template: "{{ (float(value) * 99 + 1) | round(0) }}" - state_class: measurement - entity_category: diagnostic - state_topic: "rtl_433/9b13b3f4-rtl433/devices/Fineoffset-WH51/0d1e11/battery_ok" - force_update: true - unique_id: Fineoffset-WH51-0d1e11-B - device: - identifiers: Fineoffset-WH51-0d1e11 - name: Fineoffset-WH51-0d1e11 - model: Fineoffset-WH51 - manufacturer: rtl_433 - - - name: "Moisture" - device_class: moisture - unit_of_measurement: "%" - value_template: "{{ value|float }}" - state_class: measurement - state_topic: "rtl_433/9b13b3f4-rtl433/devices/Fineoffset-WH51/0d1e11/moisture" - force_update: true - unique_id: Fineoffset-WH51-0d1e11-H - device: - identifiers: Fineoffset-WH51-0d1e11 - name: Fineoffset-WH51-0d1e11 - model: Fineoffset-WH51 - manufacturer: rtl_433 diff --git a/customizations/entities/plants.yaml b/customizations/entities/plants.yaml index 5758c6f..a20ebd0 100644 --- a/customizations/entities/plants.yaml +++ b/customizations/entities/plants.yaml @@ -22,18 +22,10 @@ plant.plant_sensor_3eb0: # entity_picture: /local/image/pansy.jpg # friendly_name: Pansy -plant.fineoffset_wh51_00f935: - entity_picture: /local/image/daisy.jpg - friendly_name: Daisies (F935) - plant.fineoffset_wh51_0ce593: entity_picture: /local/image/hosta.jpg friendly_name: Hostas (E593) -plant.fineoffset_wh51_0d1e11: - entity_picture: /local/image/cacti_planter.jpg - friendly_name: Cacti Planter (1E11) - ## Groups group.front_yard_plants: @@ -44,9 +36,9 @@ group.back_yard_plants: entity_picture: /local/image/daisy.jpg friendly_name: Back Yard Plants -group.indoor_plants: - entity_picture: /local/image/cacti_planter.jpg - friendly_name: Indoor Plants +# group.indoor_plants: +# entity_picture: /local/image/cacti_planter.jpg +# friendly_name: Indoor Plants group.outdoor_plants: entity_picture: /local/image/daisy.jpg diff --git a/esphome/bed-presence-2d14a4.yaml b/esphome/bed-presence-2d14a4.yaml new file mode 100644 index 0000000..f65f805 --- /dev/null +++ b/esphome/bed-presence-2d14a4.yaml @@ -0,0 +1,64 @@ +esphome: + name: bed-presence-2d14a4 + friendly_name: Bed Presence 2d14a4 + min_version: 2024.6.0 + name_add_mac_suffix: false + project: + name: ElevatedSensors.BedPresenceMk1 + version: DIY + platformio_options: + board_build.flash_mode: dio + +esp32: + board: esp32-c3-devkitm-1 + framework: + type: esp-idf + sdkconfig_options: + CONFIG_BT_BLE_42_FEATURES_SUPPORTED: y + CONFIG_BT_BLE_50_FEATURES_SUPPORTED: n + +# Enable logging +logger: + +# Enable Home Assistant API +api: + +# Enable wifi +wifi: + # Set up a wifi access point + ap: {} + +# In combination with the `ap` this allows the user +# to provision wifi credentials to the device via WiFi AP. +captive_portal: + +# Enable esphome OTA updates +ota: +- platform: esphome + +################################################################################ +packages: + remote_package: + url: https://github.com/ElevatedSensors/sensor-configs + ref: main + refresh: 1s + files: + - bed-presence-mk1/base.yaml + - esphome-common/bluetooth-proxy.yaml + +# See https://github.com/ElevatedSensors/sensor-configs/blob/main/bed-presence-mk1/sensor.yaml for a detailed +# description of available substitutions. +# +# substitutions: +# trigger_percentile: '0.75' +# averaging_window_samples: '5' +# fast_delayed_on: '0ms' +# fast_delayed_off: '0ms' +# standard_delayed_on: '0s' +# standard_delayed_off: '1s' +# slow_delayed_on: '2s' +# slow_delayed_off: '5s' +# reporting_delta: '1.0' +# reporting_interval_max: '180s' +# calibrate_100: '408000' +# calibrate_0: '276000' diff --git a/esphome/bed-presence-c175a4.yaml b/esphome/bed-presence-c175a4.yaml new file mode 100644 index 0000000..6163370 --- /dev/null +++ b/esphome/bed-presence-c175a4.yaml @@ -0,0 +1,64 @@ +esphome: + name: bed-presence-c175a4 + friendly_name: Bed Presence c175a4 + min_version: 2024.6.0 + name_add_mac_suffix: false + project: + name: ElevatedSensors.BedPresenceMk1 + version: DIY + platformio_options: + board_build.flash_mode: dio + +esp32: + board: esp32-c3-devkitm-1 + framework: + type: esp-idf + sdkconfig_options: + CONFIG_BT_BLE_42_FEATURES_SUPPORTED: y + CONFIG_BT_BLE_50_FEATURES_SUPPORTED: n + +# Enable logging +logger: + +# Enable Home Assistant API +api: + +# Enable wifi +wifi: + # Set up a wifi access point + ap: {} + +# In combination with the `ap` this allows the user +# to provision wifi credentials to the device via WiFi AP. +captive_portal: + +# Enable esphome OTA updates +ota: +- platform: esphome + +################################################################################ +packages: + remote_package: + url: https://github.com/ElevatedSensors/sensor-configs + ref: main + refresh: 1s + files: + - bed-presence-mk1/base.yaml + - esphome-common/bluetooth-proxy.yaml + +# See https://github.com/ElevatedSensors/sensor-configs/blob/main/bed-presence-mk1/sensor.yaml for a detailed +# description of available substitutions. +# +# substitutions: +# trigger_percentile: '0.75' +# averaging_window_samples: '5' +# fast_delayed_on: '0ms' +# fast_delayed_off: '0ms' +# standard_delayed_on: '0s' +# standard_delayed_off: '1s' +# slow_delayed_on: '2s' +# slow_delayed_off: '5s' +# reporting_delta: '1.0' +# reporting_interval_max: '180s' +# calibrate_100: '408000' +# calibrate_0: '276000' diff --git a/esphome/common/ethernet.yaml b/esphome/common/ethernet.yaml index 638c6ab..6303907 100644 --- a/esphome/common/ethernet.yaml +++ b/esphome/common/ethernet.yaml @@ -9,6 +9,8 @@ ethernet: power_pin: GPIO5 phy_addr: 0 + use_address: ${devicename}.local + manual_ip: static_ip: ${static_ip} gateway: !secret iot_default_gateway diff --git a/esphome/common/wifi.yaml b/esphome/common/wifi.yaml index 79de3f1..a59309e 100644 --- a/esphome/common/wifi.yaml +++ b/esphome/common/wifi.yaml @@ -1,3 +1,4 @@ +esphome: captive_portal: wifi: @@ -14,6 +15,8 @@ wifi: gateway: !secret iot_default_gateway subnet: !secret iot_subnet_mask + use_address: ${devicename}.local + # Enable fallback hotspot (captive portal) in case wifi connection fails ap: ssid: "${friendly_name}" diff --git a/esphome/common/wifi_dhcp.yaml b/esphome/common/wifi_dhcp.yaml index 5b54969..d1bbee4 100644 --- a/esphome/common/wifi_dhcp.yaml +++ b/esphome/common/wifi_dhcp.yaml @@ -9,6 +9,8 @@ wifi: - ssid: !secret IoT_Wifi_SSID password: !secret IoT_Wifi_PWD + use_address: ${devicename}.local + # Enable fallback hotspot (captive portal) in case wifi connection fails ap: ssid: "${friendly_name}" diff --git a/esphome/common/wifi_no_power_save.yaml b/esphome/common/wifi_no_power_save.yaml index 25bca77..bff325f 100644 --- a/esphome/common/wifi_no_power_save.yaml +++ b/esphome/common/wifi_no_power_save.yaml @@ -1,3 +1,4 @@ +esphome: captive_portal: wifi: @@ -7,6 +8,8 @@ wifi: #- ssid: !secret IoT_Wifi_SSID # password: !secret IoT_Wifi_PWD + use_address: ${devicename}.local + manual_ip: static_ip: ${static_ip} gateway: !secret iot_default_gateway diff --git a/groups.yaml b/groups.yaml index 42a3f57..e574804 100644 --- a/groups.yaml +++ b/groups.yaml @@ -8,15 +8,10 @@ front_yard_plants: back_yard_plants: - plant.plant_sensor_3eb0 #Manly Deck Box - - plant.fineoffset_wh51_00f935 #Daisies - plant.plant_sensor_3eae #Golden Deck Box -indoor_plants: - - plant.fineoffset_wh51_0d1e11 #Cactus Planter - outdoor_plants: - plant.fineoffset_wh51_0ce593 #Hostas - - plant.fineoffset_wh51_00f935 #Daisies ceiling_fans: - fan.master_bedroom diff --git a/lovelace/cameras/view-camera-12.yaml b/lovelace/cameras/view-camera-12.yaml index 4e024eb..4b48b5e 100644 --- a/lovelace/cameras/view-camera-12.yaml +++ b/lovelace/cameras/view-camera-12.yaml @@ -11,8 +11,6 @@ card: dimensions: layout: fit: fill - status_bar: - style: none cameras: - camera_entity: camera.frigate_cam12 live_provider: go2rtc @@ -20,26 +18,16 @@ card: modes: - webrtc stream: rtsp_cam12_sub + cast: + method: dashboard + dashboard: + dashboard_path: camera-casting-yml + view_path: kitchen-camera live: preload: true draggable: true show_image_during_load: false lazy_load: false - controls: - title: - mode: none - timeline: - mode: none - thumbnails: - mode: none - menu: - buttons: - frigate: - enabled: false - style: none - media_viewer: - draggable: false - lazy_load: false dimensions: aspect_ratio_mode: static aspect_ratio: '16:9' diff --git a/lovelace/details/view-batteries.yaml b/lovelace/details/view-batteries.yaml index d927c3e..cabee25 100644 --- a/lovelace/details/view-batteries.yaml +++ b/lovelace/details/view-batteries.yaml @@ -14,10 +14,6 @@ cards: - type: entities title: Ecowitt Batteries entities: - - entity: sensor.fineoffset_wh51_0d1e11_battery - name: Computer Area - 1e11 - - entity: sensor.fineoffset_wh51_00f935_battery - name: Daisies - f935 - entity: sensor.fineoffset_wh51_0ce593_battery name: Hostas - e593 - type: entities diff --git a/lovelace/details/view-hvac.yaml b/lovelace/details/view-hvac.yaml index 295d12a..8f3df86 100644 --- a/lovelace/details/view-hvac.yaml +++ b/lovelace/details/view-hvac.yaml @@ -1,1841 +1,1938 @@ title: HVAC path: hvac icon: mdi:thermometer-water -type: panel +type: sections visible: - user: 24a4bd075e7f41a497dd0390a1dd4a9f - user: cad46dedf86f454ebbd7f697a58730f2 -cards: - - type: vertical-stack +max_columns: 5 +sections: + - type: grid + cards: + - type: heading + icon: mdi:grass + heading: Outside + heading_style: title + badges: + - type: entity + show_state: true + show_icon: true + entity: sensor.outdoor_temperature + tap_action: + action: more-info + - type: entity + show_state: true + show_icon: true + entity: sensor.outdoor_humidity + tap_action: + action: more-info + - type: custom:mushroom-entity-card + entity: sensor.thermal_comfort_heat_index + name: Heat Index + primary_info: state + secondary_info: name + - type: custom:mushroom-entity-card + entity: sensor.thermal_comfort_dew_point + name: Dew Point + primary_info: state + secondary_info: name + - type: custom:mushroom-template-card + entity: sensor.thermal_comfort_summer_simmer_perception + primary: >- + {% if + is_state('sensor.thermal_comfort_summer_simmer_perception','cool') %} + Cool + + {% elif + is_state('sensor.thermal_comfort_summer_simmer_perception','slightly_cool') + %} Comfy + + {% elif + is_state('sensor.thermal_comfort_summer_simmer_perception','comfortable') + %} Comfy + + {% elif + is_state('sensor.thermal_comfort_summer_simmer_perception','slightly_warm') + %} Warm + + {% elif + is_state('sensor.thermal_comfort_summer_simmer_perception','increasing_discomfort') + %} Warm + + {% elif + is_state('sensor.thermal_comfort_summer_simmer_perception','extremely_warm') + %} Hot + + {% elif + is_state('sensor.thermal_comfort_summer_simmer_perception','danger_of_heatstroke') + %} Hot + + {% elif + is_state('sensor.thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') + %} Danger + + {% elif + is_state('sensor.thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') + %} Danger + + {% else %} Unknown {% endif %} + secondary: Summer Simmer + icon: tc:simmer-zone + icon_color: > + {% if + is_state('sensor.thermal_comfort_summer_simmer_perception','cool') %} + indigo + + {% elif + is_state('sensor.thermal_comfort_summer_simmer_perception','slightly_cool') + %} light-blue + + {% elif + is_state('sensor.thermal_comfort_summer_simmer_perception','comfortable') + %} green + + {% elif + is_state('sensor.thermal_comfort_summer_simmer_perception','slightly_warm') + %} light-green + + {% elif + is_state('sensor.thermal_comfort_summer_simmer_perception','increasing_discomfort') + %} yellow + + {% elif + is_state('sensor.thermal_comfort_summer_simmer_perception','extremely_warm') + %} amber + + {% elif + is_state('sensor.thermal_comfort_summer_simmer_perception','danger_of_heatstroke') + %} orange + + {% elif + is_state('sensor.thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') + %} deep-orange + + {% elif + is_state('sensor.thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') + %} red + + {% else %} disabled {% endif %} + tap_action: + action: more-info + - type: custom:mushroom-template-card + entity: sensor.thermal_comfort_summer_scharlau_perception + primary: Summer Scharlau + secondary: > + {% if + is_state('sensor.thermal_comfort_summer_scharlau_perception','comfortable') + %} Comfy {% elif + is_state('sensor.thermal_comfort_summer_scharlau_perception','slightly_uncomfortable') + %} Slightly Uncomfy {% elif + is_state('sensor.thermal_comfort_summer_scharlau_perception','moderately_uncomfortable') + %} Moderatly Uncomfy {% elif + is_state('sensor.thermal_comfort_summer_scharlau_perception','highly_uncomfortable') + %} Highly Uncomfortable {% elif + is_state('sensor.thermal_comfort_summer_scharlau_perception','outside_calculable_range') + %} Outside Calculable Range {% endif %} + icon: > + {% if + is_state('sensor.thermal_comfort_summer_scharlau_perception','comfortable') + %} mdi:thermometer-low {% elif + is_state('sensor.thermal_comfort_summer_scharlau_perception','slightly_uncomfortable') + %} mdi:thermometer {% elif + is_state('sensor.thermal_comfort_summer_scharlau_perception','moderately_uncomfortable') + %} mdi:thermometer-high {% elif + is_state('sensor.thermal_comfort_summer_scharlau_perception','highly_uncomfortable') + %} mdi:thermometer-alert {% elif + is_state('sensor.thermal_comfort_summer_scharlau_perception','outside_calculable_range') + %} mdi:thermometer-low {% endif %} + icon_color: > + {% if + is_state('sensor.thermal_comfort_summer_scharlau_perception','comfortable') + %} green {% elif + is_state('sensor.thermal_comfort_summer_scharlau_perception','slightly_uncomfortable') + %} yellow {% elif + is_state('sensor.thermal_comfort_summer_scharlau_perception','moderately_uncomfortable') + %} orange {% elif + is_state('sensor.thermal_comfort_summer_scharlau_perception','highly_uncomfortable') + %} red {% elif + is_state('sensor.thermal_comfort_summer_scharlau_perception','outside_calculable_range') + %} gray {% endif %} + tap_action: + action: more-info + - type: custom:mushroom-template-card + entity: sensor.thermal_comfort_dew_point_perception + primary: >- + {% if is_state('sensor.thermal_comfort_dew_point_perception','dry') %} + Dry + + {% elif + is_state('sensor.thermal_comfort_dew_point_perception','very_comfortable') + %} Comfortable + + {% elif + is_state('sensor.thermal_comfort_dew_point_perception','ok_but_humid') + %} Sticky + + {% elif + is_state('sensor.thermal_comfort_dew_point_perception','somewhat_uncomfortable') + %} Humid + + {% elif + is_state('sensor.thermal_comfort_dew_point_perception','quite_uncomfortable') + %} Uncomfortable + + {% elif + is_state('sensor.thermal_comfort_dew_point_perception','extremely_uncomfortable') + %} Oppressive + + {% elif + is_state('sensor.thermal_comfort_dew_point_perception','severely_high') + %} Miserable + + {% else %} Unknown {% endif %} + secondary: | + Dew Point Perception + icon: tc:dew-point + icon_color: > + {% if is_state('sensor.thermal_comfort_dew_point_perception','dry') %} + blue-grey + + {% elif + is_state('sensor.thermal_comfort_dew_point_perception','very_comfortable') + %} green + + {% elif + is_state('sensor.thermal_comfort_dew_point_perception','ok_but_humid') + %} light-green + + {% elif + is_state('sensor.thermal_comfort_dew_point_perception','somewhat_uncomfortable') + %} yellow + + {% elif + is_state('sensor.thermal_comfort_dew_point_perception','quite_uncomfortable') + %} amber + + {% elif + is_state('sensor.thermal_comfort_dew_point_perception','extremely_uncomfortable') + %} deep-orange + + {% elif + is_state('sensor.thermal_comfort_dew_point_perception','severely_high') + %} red + + {% else %} disabled {% endif %} + tap_action: + action: more-info + - type: custom:mushroom-template-card + entity: sensor.thermal_comfort_humidex_perception + primary: >- + {% if + is_state('sensor.thermal_comfort_humidex_perception','comfortable') %} + Comfortable + + {% elif + is_state('sensor.thermal_comfort_humidex_perception','noticable_discomfort') + %} Uncomfortable + + {% elif + is_state('sensor.thermal_comfort_humidex_perception','evident_discomfort') + %} Unbearable + + {% elif + is_state('sensor.thermal_comfort_humidex_perception','great_discomfort') + %} Oppressive + + {% elif + is_state('sensor.thermal_comfort_humidex_perception','dangerous_discomfort') + %} Dangerous + + {% elif + is_state('sensor.thermal_comfort_humidex_perception','heat_stroke') %} + Hazardous + + {% else %} disabled {% endif %} + secondary: | + Humidex + icon: tc:thermal-perception + icon_color: >- + {% if + is_state('sensor.thermal_comfort_humidex_perception','comfortable') %} + green + + {% elif + is_state('sensor.thermal_comfort_humidex_perception','noticable_discomfort') + %} yellow + + {% elif + is_state('sensor.thermal_comfort_humidex_perception','evident_discomfort') + %} amber + + {% elif + is_state('sensor.thermal_comfort_humidex_perception','great_discomfort') + %} orange + + {% elif + is_state('sensor.thermal_comfort_humidex_perception','dangerous_discomfort') + %} deep-orange + + {% elif + is_state('sensor.thermal_comfort_humidex_perception','heat_stroke') %} + red + + {% else %} disabled {% endif %} + tap_action: + action: more-info + - type: custom:mushroom-template-card + entity: sensor.thermal_comfort_relative_strain_perception + primary: Relative Strain + secondary: > + {% if + is_state('sensor.thermal_comfort_relative_strain_perception','comfortable') + %} Comfy {% elif + is_state('sensor.thermal_comfort_relative_strain_perception','slight_discomfort') + %} Slight Discomfort {% elif + is_state('sensor.thermal_comfort_relative_strain_perception','discomfort') + %} Discomfort {% elif + is_state('sensor.thermal_comfort_relative_strain_perception','significant_discomfort') + %} Significant Discomfort {% elif + is_state('sensor.thermal_comfort_relative_strain_perception','extreme_discomfort') + %} Extreme Discomfort {% endif %} + icon: tc:dew-point-alternative + icon_color: > + {% if + is_state('sensor.thermal_comfort_relative_strain_perception','comfortable') + %} green {% elif + is_state('sensor.thermal_comfort_relative_strain_perception','slight_discomfort') + %} yellow {% elif + is_state('sensor.thermal_comfort_relative_strain_perception','discomfort') + %} orange {% elif + is_state('sensor.thermal_comfort_relative_strain_perception','significant_discomfort') + %} red {% elif + is_state('sensor.thermal_comfort_relative_strain_perception','extreme_discomfort') + %} red {% endif %} + tap_action: + action: more-info + - type: custom:mushroom-template-card + entity: sensor.thermal_comfort_thoms_discomfort_perception + primary: Thoms + secondary: > + {% if + is_state('sensor.thermal_comfort_thoms_discomfort_perception','no_discomfort') + %} No discomfort {% elif + is_state('sensor.thermal_comfort_thoms_discomfort_perception','less_than_half') + %} Less than half {% elif + is_state('sensor.thermal_comfort_thoms_discomfort_perception','more_than_half') + %} More than half {% elif + is_state('sensor.thermal_comfort_thoms_discomfort_perception','most') + %} Most {% elif + is_state('sensor.thermal_comfort_thoms_discomfort_perception','everyone') + %} Everyone {% elif + is_state('sensor.thermal_comfort_thoms_discomfort_perception','dangerous') + %} Dangerous {% endif %} + icon: tc:heat-index + icon_color: > + {% if + is_state('sensor.thermal_comfort_thoms_discomfort_perception','no_discomfort') + %} blue {% elif + is_state('sensor.thermal_comfort_thoms_discomfort_perception','less_than_half') + %} yellow {% elif + is_state('sensor.thermal_comfort_thoms_discomfort_perception','more_than_half') + %} orange {% elif + is_state('sensor.thermal_comfort_thoms_discomfort_perception','most') + %} orange {% elif + is_state('sensor.thermal_comfort_thoms_discomfort_perception','everyone') + %} red {% elif + is_state('sensor.thermal_comfort_thoms_discomfort_perception','dangerous') + %} red {% endif %} + tap_action: + action: more-info + - type: custom:mushroom-template-card + entity: sensor.thermal_comfort_winter_scharlau_perception + primary: Winter Scharlau + secondary: > + {% if + is_state('sensor.thermal_comfort_winter_scharlau_perception','comfortable') + %} Comfy {% elif + is_state('sensor.thermal_comfort_winter_scharlau_perception','slightly_uncomfortable') + %} Slightly Uncomfy {% elif + is_state('sensor.thermal_comfort_winter_scharlau_perception','moderatly_uncomfortable') + %} Moderatly Uncomfy {% elif + is_state('sensor.thermal_comfort_winter_scharlau_perception','highly_uncomfortable') + %} Highly Uncomfortable {% elif + is_state('sensor.thermal_comfort_winter_scharlau_perception','outside_calculable_range') + %} Outside Calculable Range {% endif %} + icon: > + {% if + is_state('sensor.thermal_comfort_winter_scharlau_perception','comfortable') + %} mdi:snowflake-off {% elif + is_state('sensor.thermal_comfort_winter_scharlau_perception','slightly_uncomfortable') + %} mdi:snowflake {% elif + is_state('sensor.thermal_comfort_winter_scharlau_perception','moderatly_uncomfortable') + %} mdi:snowflake-thermometer {% elif + is_state('sensor.thermal_comfort_winter_scharlau_perception','highly_uncomfortable') + %} mdi:snowflake-alert {% elif + is_state('sensor.thermal_comfort_winter_scharlau_perception','outside_calculable_range') + %} mdi:snowflake-off {% endif %} + icon_color: > + {% if + is_state('sensor.thermal_comfort_winter_scharlau_perception','comfortable') + %} green {% elif + is_state('sensor.thermal_comfort_winter_scharlau_perception','slightly_uncomfortable') + %} yellow {% elif + is_state('sensor.thermal_comfort_winter_scharlau_perception','moderatly_uncomfortable') + %} orange {% elif + is_state('sensor.thermal_comfort_winter_scharlau_perception','highly_uncomfortable') + %} red {% elif + is_state('sensor.thermal_comfort_winter_scharlau_perception','outside_calculable_range') + %} gray {% endif %} + tap_action: + action: more-info + - type: custom:mushroom-entity-card + entity: sensor.thermal_comfort_frost_risk + name: Frost Risk + - type: grid + cards: + - type: heading + icon: mdi:television + heading: Front Room + heading_style: title + badges: + - type: entity + entity: sensor.front_room_thermostat_temperature + tap_action: + action: more-info + - type: entity + entity: sensor.front_room_thermostat_humidity + tap_action: + action: more-info + - type: custom:mushroom-template-card + entity: sensor.front_room_thermal_comfort_summer_simmer_perception + primary: > + {% if + is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','cool') + %} Cool {% elif + is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','slightly_cool') + %} Comfy {% elif + is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','comfortable') + %} Comfy {% elif + is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','slightly_warm') + %} Warm {% elif + is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','increasing_discomfort') + %} Warm {% elif + is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','extremely_warm') + %} Hot {% elif + is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') + %} Hot {% elif + is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') + %} Danger {% elif + is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') + %} Danger {% else %} Unknown {% endif %} + secondary: Simmer + icon: tc:simmer-zone + icon_color: > + {% if + is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','cool') + %} indigo {% elif + is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','slightly_cool') + %} light-blue {% elif + is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','comfortable') + %} green {% elif + is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','slightly_warm') + %} light-green {% elif + is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','increasing_discomfort') + %} yellow {% elif + is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','extremely_warm') + %} amber {% elif + is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') + %} orange {% elif + is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') + %} deep-orange {% elif + is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + - type: custom:mushroom-template-card + entity: sensor.front_room_thermal_comfort_summer_simmer_index + primary: >- + {{states('sensor.front_room_thermal_comfort_summer_simmer_index') | + round(2) }} °F + icon: tc:simmer-zone + icon_color: > + {% if + is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','cool') + %} indigo {% elif + is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','slightly_cool') + %} light-blue {% elif + is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','comfortable') + %} green {% elif + is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','slightly_warm') + %} light-green {% elif + is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','increasing_discomfort') + %} yellow {% elif + is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','extremely_warm') + %} amber {% elif + is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') + %} orange {% elif + is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') + %} deep-orange {% elif + is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + secondary: "" + - type: custom:mushroom-template-card + entity: sensor.front_room_thermal_comfort_dew_point_perception + primary: > + {% if + is_state('sensor.front_room_thermal_comfort_dew_point_perception','dry') + %} Dry {% elif + is_state('sensor.front_room_thermal_comfort_dew_point_perception','very_comfortable') + %} Very Comfy {% elif + is_state('sensor.front_room_thermal_comfort_dew_point_perception','comfortable') + %} Comfortable {% elif + is_state('sensor.front_room_thermal_comfort_dew_point_perception','ok_but_humid') + %} Sticky {% elif + is_state('sensor.front_room_thermal_comfort_dew_point_perception','somewhat_uncomfortable') + %} Humid {% elif + is_state('sensor.front_room_thermal_comfort_dew_point_perception','quite_uncomfortable') + %} Uncomfortable {% elif + is_state('sensor.front_room_thermal_comfort_dew_point_perception','extremely_uncomfortable') + %} Oppressive {% elif + is_state('sensor.front_room_thermal_comfort_dew_point_perception','severely_high') + %} Miserable {% else %} Unknown {% endif %} + icon: tc:dew-point + icon_color: > + {% if + is_state('sensor.front_room_thermal_comfort_dew_point_perception','dry') + %} blue-grey {% elif + is_state('sensor.front_room_thermal_comfort_dew_point_perception','very_comfortable') + %} green {% elif + is_state('sensor.front_room_thermal_comfort_dew_point_perception','comfortable') + %} light-green {% elif + is_state('sensor.front_room_thermal_comfort_dew_point_perception','ok_but_humid') + %} lime {% elif + is_state('sensor.front_room_thermal_comfort_dew_point_perception','somewhat_uncomfortable') + %} yellow {% elif + is_state('sensor.front_room_thermal_comfort_dew_point_perception','quite_uncomfortable') + %} amber {% elif + is_state('sensor.front_room_thermal_comfort_dew_point_perception','extremely_uncomfortable') + %} deep-orange {% elif + is_state('sensor.front_room_thermal_comfort_dew_point_perception','severely_high') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + secondary: Dew Point + - type: custom:mushroom-template-card + entity: sensor.front_room_thermal_comfort_humidex_perception + primary: > + {% if + is_state('sensor.front_room_thermal_comfort_humidex_perception','comfortable') + %} Comfortable {% elif + is_state('sensor.front_room_thermal_comfort_humidex_perception','noticable_discomfort') + %} Uncomfortable {% elif + is_state('sensor.front_room_thermal_comfort_humidex_perception','evident_discomfort') + %} Unbearable {% elif + is_state('sensor.front_room_thermal_comfort_humidex_perception','great_discomfort') + %} Oppressive {% elif + is_state('sensor.front_room_thermal_comfort_humidex_perception','dangerous_discomfort') + %} Dangerous {% elif + is_state('sensor.front_room_thermal_comfort_humidex_perception','heat_stroke') + %} Hazardous {% else %} disabled {% endif %} + secondary: Humidex + icon: tc:thermal-perception + icon_color: > + {% if + is_state('sensor.front_room_thermal_comfort_humidex_perception','comfortable') + %} green {% elif + is_state('sensor.front_room_thermal_comfort_humidex_perception','noticable_discomfort') + %} yellow {% elif + is_state('sensor.front_room_thermal_comfort_humidex_perception','evident_discomfort') + %} amber {% elif + is_state('sensor.front_room_thermal_comfort_humidex_perception','great_discomfort') + %} orange {% elif + is_state('sensor.front_room_thermal_comfort_humidex_perception','dangerous_discomfort') + %} deep-orange {% elif + is_state('sensor.front_room_thermal_comfort_humidex_perception','heat_stroke') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + - type: heading + icon: mdi:desktop-tower-monitor + heading: Computer Area + heading_style: title + badges: + - type: entity + entity: sensor.computer_area_multisensor_air_temperature + tap_action: + action: more-info + - type: entity + entity: sensor.computer_area_multisensor_humidity + tap_action: + action: more-info + - type: custom:mushroom-template-card + entity: sensor.computer_area_thermal_comfort_summer_simmer_perception + primary: > + {% if + is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','cool') + %} Cool {% elif + is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','slightly_cool') + %} Comfy {% elif + is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','comfortable') + %} Comfy {% elif + is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','slightly_warm') + %} Warm {% elif + is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','increasing_discomfort') + %} Warm {% elif + is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','extremely_warm') + %} Hot {% elif + is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') + %} Hot {% elif + is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') + %} Danger {% elif + is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') + %} Danger {% else %} Unknown {% endif %} + secondary: Simmer + icon: tc:simmer-zone + icon_color: > + {% if + is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','cool') + %} indigo {% elif + is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','slightly_cool') + %} light-blue {% elif + is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','comfortable') + %} green {% elif + is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','slightly_warm') + %} light-green {% elif + is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','increasing_discomfort') + %} yellow {% elif + is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','extremely_warm') + %} amber {% elif + is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') + %} orange {% elif + is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') + %} deep-orange {% elif + is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + - type: custom:mushroom-template-card + entity: sensor.computer_area_thermal_comfort_summer_simmer_index + primary: >- + {{states('sensor.computer_area_thermal_comfort_summer_simmer_index') | + round(2) }} °F + icon: tc:simmer-zone + icon_color: > + {% if + is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','cool') + %} indigo {% elif + is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','slightly_cool') + %} light-blue {% elif + is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','comfortable') + %} green {% elif + is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','slightly_warm') + %} light-green {% elif + is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','increasing_discomfort') + %} yellow {% elif + is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','extremely_warm') + %} amber {% elif + is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') + %} orange {% elif + is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') + %} deep-orange {% elif + is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + secondary: "" + - type: custom:mushroom-template-card + entity: sensor.computer_area_thermal_comfort_dew_point_perception + primary: > + {% if + is_state('sensor.computer_area_thermal_comfort_dew_point_perception','dry') + %} Dry {% elif + is_state('sensor.computer_area_thermal_comfort_dew_point_perception','very_comfortable') + %} Very Comfy {% elif + is_state('sensor.computer_area_thermal_comfort_dew_point_perception','comfortable') + %} Comfortable {% elif + is_state('sensor.computer_area_thermal_comfort_dew_point_perception','ok_but_humid') + %} Sticky {% elif + is_state('sensor.computer_area_thermal_comfort_dew_point_perception','somewhat_uncomfortable') + %} Humid {% elif + is_state('sensor.computer_area_thermal_comfort_dew_point_perception','quite_uncomfortable') + %} Uncomfortable {% elif + is_state('sensor.computer_area_thermal_comfort_dew_point_perception','extremely_uncomfortable') + %} Oppressive {% elif + is_state('sensor.computer_area_thermal_comfort_dew_point_perception','severely_high') + %} Miserable {% else %} Unknown {% endif %} + icon: tc:dew-point + icon_color: > + {% if + is_state('sensor.computer_area_thermal_comfort_dew_point_perception','dry') + %} blue-grey {% elif + is_state('sensor.computer_area_thermal_comfort_dew_point_perception','very_comfortable') + %} green {% elif + is_state('sensor.computer_area_thermal_comfort_dew_point_perception','comfortable') + %} light-green {% elif + is_state('sensor.computer_area_thermal_comfort_dew_point_perception','ok_but_humid') + %} lime {% elif + is_state('sensor.computer_area_thermal_comfort_dew_point_perception','somewhat_uncomfortable') + %} yellow {% elif + is_state('sensor.computer_area_thermal_comfort_dew_point_perception','quite_uncomfortable') + %} amber {% elif + is_state('sensor.computer_area_thermal_comfort_dew_point_perception','extremely_uncomfortable') + %} deep-orange {% elif + is_state('sensor.computer_area_thermal_comfort_dew_point_perception','severely_high') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + secondary: Dew Point + - type: custom:mushroom-template-card + entity: sensor.computer_area_thermal_comfort_humidex_perception + primary: > + {% if + is_state('sensor.computer_area_thermal_comfort_humidex_perception','comfortable') + %} Comfortable {% elif + is_state('sensor.computer_area_thermal_comfort_humidex_perception','noticable_discomfort') + %} Uncomfortable {% elif + is_state('sensor.computer_area_thermal_comfort_humidex_perception','evident_discomfort') + %} Unbearable {% elif + is_state('sensor.computer_area_thermal_comfort_humidex_perception','great_discomfort') + %} Oppressive {% elif + is_state('sensor.computer_area_thermal_comfort_humidex_perception','dangerous_discomfort') + %} Dangerous {% elif + is_state('sensor.computer_area_thermal_comfort_humidex_perception','heat_stroke') + %} Hazardous {% else %} disabled {% endif %} + secondary: Humidex + icon: tc:thermal-perception + icon_color: > + {% if + is_state('sensor.computer_area_thermal_comfort_humidex_perception','comfortable') + %} green {% elif + is_state('sensor.computer_area_thermal_comfort_humidex_perception','noticable_discomfort') + %} yellow {% elif + is_state('sensor.computer_area_thermal_comfort_humidex_perception','evident_discomfort') + %} amber {% elif + is_state('sensor.computer_area_thermal_comfort_humidex_perception','great_discomfort') + %} orange {% elif + is_state('sensor.computer_area_thermal_comfort_humidex_perception','dangerous_discomfort') + %} deep-orange {% elif + is_state('sensor.computer_area_thermal_comfort_humidex_perception','heat_stroke') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + - type: grid + cards: + - type: heading + icon: mdi:bunk-bed + heading: Nursery + heading_style: title + badges: + - type: entity + entity: sensor.nursery_multisensor_air_temperature + tap_action: + action: more-info + - type: entity + entity: sensor.nursery_multisensor_humidity + tap_action: + action: more-info + - type: custom:mushroom-template-card + entity: sensor.nursery_thermal_comfort_summer_simmer_perception + primary: > + {% if + is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','cool') + %} Cool {% elif + is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','slightly_cool') + %} Comfy {% elif + is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','comfortable') + %} Comfy {% elif + is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','slightly_warm') + %} Warm {% elif + is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','increasing_discomfort') + %} Warm {% elif + is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','extremely_warm') + %} Hot {% elif + is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') + %} Hot {% elif + is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') + %} Danger {% elif + is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') + %} Danger {% else %} Unknown {% endif %} + secondary: Simmer + icon: tc:simmer-zone + icon_color: > + {% if + is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','cool') + %} indigo {% elif + is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','slightly_cool') + %} light-blue {% elif + is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','comfortable') + %} green {% elif + is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','slightly_warm') + %} light-green {% elif + is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','increasing_discomfort') + %} yellow {% elif + is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','extremely_warm') + %} amber {% elif + is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') + %} orange {% elif + is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') + %} deep-orange {% elif + is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + - type: custom:mushroom-template-card + entity: sensor.nursery_thermal_comfort_summer_simmer_index + primary: >- + {{states('sensor.nursery_thermal_comfort_summer_simmer_index') | + round(2) }} °F + icon: tc:simmer-zone + icon_color: > + {% if + is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','cool') + %} indigo {% elif + is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','slightly_cool') + %} light-blue {% elif + is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','comfortable') + %} green {% elif + is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','slightly_warm') + %} light-green {% elif + is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','increasing_discomfort') + %} yellow {% elif + is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','extremely_warm') + %} amber {% elif + is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') + %} orange {% elif + is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') + %} deep-orange {% elif + is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + secondary: "" + - type: custom:mushroom-template-card + entity: sensor.nursery_thermal_comfort_dew_point_perception + primary: > + {% if + is_state('sensor.nursery_thermal_comfort_dew_point_perception','dry') + %} Dry {% elif + is_state('sensor.nursery_thermal_comfort_dew_point_perception','very_comfortable') + %} Very Comfy {% elif + is_state('sensor.nursery_thermal_comfort_dew_point_perception','comfortable') + %} Comfortable {% elif + is_state('sensor.nursery_thermal_comfort_dew_point_perception','ok_but_humid') + %} Sticky {% elif + is_state('sensor.nursery_thermal_comfort_dew_point_perception','somewhat_uncomfortable') + %} Humid {% elif + is_state('sensor.nursery_thermal_comfort_dew_point_perception','quite_uncomfortable') + %} Uncomfortable {% elif + is_state('sensor.nursery_thermal_comfort_dew_point_perception','extremely_uncomfortable') + %} Oppressive {% elif + is_state('sensor.nursery_thermal_comfort_dew_point_perception','severely_high') + %} Miserable {% else %} Unknown {% endif %} + icon: tc:dew-point + icon_color: > + {% if + is_state('sensor.nursery_thermal_comfort_dew_point_perception','dry') + %} blue-grey {% elif + is_state('sensor.nursery_thermal_comfort_dew_point_perception','very_comfortable') + %} green {% elif + is_state('sensor.nursery_thermal_comfort_dew_point_perception','comfortable') + %} light-green {% elif + is_state('sensor.nursery_thermal_comfort_dew_point_perception','ok_but_humid') + %} lime {% elif + is_state('sensor.nursery_thermal_comfort_dew_point_perception','somewhat_uncomfortable') + %} yellow {% elif + is_state('sensor.nursery_thermal_comfort_dew_point_perception','quite_uncomfortable') + %} amber {% elif + is_state('sensor.nursery_thermal_comfort_dew_point_perception','extremely_uncomfortable') + %} deep-orange {% elif + is_state('sensor.nursery_thermal_comfort_dew_point_perception','severely_high') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + secondary: Dew Point + - type: custom:mushroom-template-card + entity: sensor.nursery_thermal_comfort_humidex_perception + primary: > + {% if + is_state('sensor.nursery_thermal_comfort_humidex_perception','comfortable') + %} Comfortable {% elif + is_state('sensor.nursery_thermal_comfort_humidex_perception','noticable_discomfort') + %} Uncomfortable {% elif + is_state('sensor.nursery_thermal_comfort_humidex_perception','evident_discomfort') + %} Unbearable {% elif + is_state('sensor.nursery_thermal_comfort_humidex_perception','great_discomfort') + %} Oppressive {% elif + is_state('sensor.nursery_thermal_comfort_humidex_perception','dangerous_discomfort') + %} Dangerous {% elif + is_state('sensor.nursery_thermal_comfort_humidex_perception','heat_stroke') + %} Hazardous {% else %} disabled {% endif %} + secondary: Humidex + icon: tc:thermal-perception + icon_color: > + {% if + is_state('sensor.nursery_thermal_comfort_humidex_perception','comfortable') + %} green {% elif + is_state('sensor.nursery_thermal_comfort_humidex_perception','noticable_discomfort') + %} yellow {% elif + is_state('sensor.nursery_thermal_comfort_humidex_perception','evident_discomfort') + %} amber {% elif + is_state('sensor.nursery_thermal_comfort_humidex_perception','great_discomfort') + %} orange {% elif + is_state('sensor.nursery_thermal_comfort_humidex_perception','dangerous_discomfort') + %} deep-orange {% elif + is_state('sensor.nursery_thermal_comfort_humidex_perception','heat_stroke') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + - type: heading + icon: mdi:microsoft-xbox-controller + heading: Great Room + heading_style: title + badges: + - type: entity + entity: sensor.great_room_multisensor_air_temperature + tap_action: + action: more-info + - type: entity + entity: sensor.great_room_multisensor_humidity + tap_action: + action: more-info + - type: custom:mushroom-template-card + entity: sensor.great_room_thermal_comfort_summer_simmer_perception + primary: > + {% if + is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','cool') + %} Cool {% elif + is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','slightly_cool') + %} Comfy {% elif + is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','comfortable') + %} Comfy {% elif + is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','slightly_warm') + %} Warm {% elif + is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','increasing_discomfort') + %} Warm {% elif + is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','extremely_warm') + %} Hot {% elif + is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') + %} Hot {% elif + is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') + %} Danger {% elif + is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') + %} Danger {% else %} Unknown {% endif %} + secondary: Simmer + icon: tc:simmer-zone + icon_color: > + {% if + is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','cool') + %} indigo {% elif + is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','slightly_cool') + %} light-blue {% elif + is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','comfortable') + %} green {% elif + is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','slightly_warm') + %} light-green {% elif + is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','increasing_discomfort') + %} yellow {% elif + is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','extremely_warm') + %} amber {% elif + is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') + %} orange {% elif + is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') + %} deep-orange {% elif + is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + - type: custom:mushroom-template-card + entity: sensor.great_room_thermal_comfort_summer_simmer_index + primary: >- + {{states('sensor.great_room_thermal_comfort_summer_simmer_index') | + round(2) }} °F + icon: tc:simmer-zone + icon_color: > + {% if + is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','cool') + %} indigo {% elif + is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','slightly_cool') + %} light-blue {% elif + is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','comfortable') + %} green {% elif + is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','slightly_warm') + %} light-green {% elif + is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','increasing_discomfort') + %} yellow {% elif + is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','extremely_warm') + %} amber {% elif + is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') + %} orange {% elif + is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') + %} deep-orange {% elif + is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + secondary: "" + - type: custom:mushroom-template-card + entity: sensor.great_room_thermal_comfort_dew_point_perception + primary: > + {% if + is_state('sensor.great_room_thermal_comfort_dew_point_perception','dry') + %} Dry {% elif + is_state('sensor.great_room_thermal_comfort_dew_point_perception','very_comfortable') + %} Very Comfy {% elif + is_state('sensor.great_room_thermal_comfort_dew_point_perception','comfortable') + %} Comfortable {% elif + is_state('sensor.great_room_thermal_comfort_dew_point_perception','ok_but_humid') + %} Sticky {% elif + is_state('sensor.great_room_thermal_comfort_dew_point_perception','somewhat_uncomfortable') + %} Humid {% elif + is_state('sensor.great_room_thermal_comfort_dew_point_perception','quite_uncomfortable') + %} Uncomfortable {% elif + is_state('sensor.great_room_thermal_comfort_dew_point_perception','extremely_uncomfortable') + %} Oppressive {% elif + is_state('sensor.great_room_thermal_comfort_dew_point_perception','severely_high') + %} Miserable {% else %} Unknown {% endif %} + icon: tc:dew-point + icon_color: > + {% if + is_state('sensor.great_room_thermal_comfort_dew_point_perception','dry') + %} blue-grey {% elif + is_state('sensor.great_room_thermal_comfort_dew_point_perception','very_comfortable') + %} green {% elif + is_state('sensor.great_room_thermal_comfort_dew_point_perception','comfortable') + %} light-green {% elif + is_state('sensor.great_room_thermal_comfort_dew_point_perception','ok_but_humid') + %} lime {% elif + is_state('sensor.great_room_thermal_comfort_dew_point_perception','somewhat_uncomfortable') + %} yellow {% elif + is_state('sensor.great_room_thermal_comfort_dew_point_perception','quite_uncomfortable') + %} amber {% elif + is_state('sensor.great_room_thermal_comfort_dew_point_perception','extremely_uncomfortable') + %} deep-orange {% elif + is_state('sensor.great_room_thermal_comfort_dew_point_perception','severely_high') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + secondary: Dew Point + - type: custom:mushroom-template-card + entity: sensor.great_room_thermal_comfort_humidex_perception + primary: > + {% if + is_state('sensor.great_room_thermal_comfort_humidex_perception','comfortable') + %} Comfortable {% elif + is_state('sensor.great_room_thermal_comfort_humidex_perception','noticable_discomfort') + %} Uncomfortable {% elif + is_state('sensor.great_room_thermal_comfort_humidex_perception','evident_discomfort') + %} Unbearable {% elif + is_state('sensor.great_room_thermal_comfort_humidex_perception','great_discomfort') + %} Oppressive {% elif + is_state('sensor.great_room_thermal_comfort_humidex_perception','dangerous_discomfort') + %} Dangerous {% elif + is_state('sensor.great_room_thermal_comfort_humidex_perception','heat_stroke') + %} Hazardous {% else %} disabled {% endif %} + secondary: Humidex + icon: tc:thermal-perception + icon_color: > + {% if + is_state('sensor.great_room_thermal_comfort_humidex_perception','comfortable') + %} green {% elif + is_state('sensor.great_room_thermal_comfort_humidex_perception','noticable_discomfort') + %} yellow {% elif + is_state('sensor.great_room_thermal_comfort_humidex_perception','evident_discomfort') + %} amber {% elif + is_state('sensor.great_room_thermal_comfort_humidex_perception','great_discomfort') + %} orange {% elif + is_state('sensor.great_room_thermal_comfort_humidex_perception','dangerous_discomfort') + %} deep-orange {% elif + is_state('sensor.great_room_thermal_comfort_humidex_perception','heat_stroke') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + - type: grid + cards: + - type: heading + icon: mdi:bed-king + heading: Master Bedroom + heading_style: title + badges: + - type: entity + entity: sensor.master_bedroom_multisensor_air_temperature + tap_action: + action: more-info + - type: entity + entity: sensor.master_bedroom_multisensor_humidity + tap_action: + action: more-info + - type: custom:mushroom-template-card + entity: sensor.master_bedroom_thermal_comfort_summer_simmer_perception + primary: > + {% if + is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','cool') + %} Cool {% elif + is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','slightly_cool') + %} Comfy {% elif + is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','comfortable') + %} Comfy {% elif + is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','slightly_warm') + %} Warm {% elif + is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','increasing_discomfort') + %} Warm {% elif + is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','extremely_warm') + %} Hot {% elif + is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') + %} Hot {% elif + is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') + %} Danger {% elif + is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') + %} Danger {% else %} Unknown {% endif %} + secondary: Simmer + icon: tc:simmer-zone + icon_color: > + {% if + is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','cool') + %} indigo {% elif + is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','slightly_cool') + %} light-blue {% elif + is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','comfortable') + %} green {% elif + is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','slightly_warm') + %} light-green {% elif + is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','increasing_discomfort') + %} yellow {% elif + is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','extremely_warm') + %} amber {% elif + is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') + %} orange {% elif + is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') + %} deep-orange {% elif + is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + - type: custom:mushroom-template-card + entity: sensor.master_bedroom_thermal_comfort_summer_simmer_index + primary: >- + {{states('sensor.master_bedroom_thermal_comfort_summer_simmer_index') + | round(2) }} °F + icon: tc:simmer-zone + icon_color: > + {% if + is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','cool') + %} indigo {% elif + is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','slightly_cool') + %} light-blue {% elif + is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','comfortable') + %} green {% elif + is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','slightly_warm') + %} light-green {% elif + is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','increasing_discomfort') + %} yellow {% elif + is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','extremely_warm') + %} amber {% elif + is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') + %} orange {% elif + is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') + %} deep-orange {% elif + is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + secondary: "" + - type: custom:mushroom-template-card + entity: sensor.master_bedroom_thermal_comfort_dew_point_perception + primary: > + {% if + is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','dry') + %} Dry {% elif + is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','very_comfortable') + %} Very Comfy {% elif + is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','comfortable') + %} Comfortable {% elif + is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','ok_but_humid') + %} Sticky {% elif + is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','somewhat_uncomfortable') + %} Humid {% elif + is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','quite_uncomfortable') + %} Uncomfortable {% elif + is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','extremely_uncomfortable') + %} Oppressive {% elif + is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','severely_high') + %} Miserable {% else %} Unknown {% endif %} + icon: tc:dew-point + icon_color: > + {% if + is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','dry') + %} blue-grey {% elif + is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','very_comfortable') + %} green {% elif + is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','comfortable') + %} light-green {% elif + is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','ok_but_humid') + %} lime {% elif + is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','somewhat_uncomfortable') + %} yellow {% elif + is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','quite_uncomfortable') + %} amber {% elif + is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','extremely_uncomfortable') + %} deep-orange {% elif + is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','severely_high') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + secondary: Dew Point + - type: custom:mushroom-template-card + entity: sensor.master_bedroom_thermal_comfort_humidex_perception + primary: > + {% if + is_state('sensor.master_bedroom_thermal_comfort_humidex_perception','comfortable') + %} Comfortable {% elif + is_state('sensor.master_bedroom_thermal_comfort_humidex_perception','noticable_discomfort') + %} Uncomfortable {% elif + is_state('sensor.master_bedroom_thermal_comfort_humidex_perception','evident_discomfort') + %} Unbearable {% elif + is_state('sensor.master_bedroom_thermal_comfort_humidex_perception','great_discomfort') + %} Oppressive {% elif + is_state('sensor.master_bedroom_thermal_comfort_humidex_perception','dangerous_discomfort') + %} Dangerous {% elif + is_state('sensor.master_bedroom_thermal_comfort_humidex_perception','heat_stroke') + %} Hazardous {% else %} disabled {% endif %} + secondary: Humidex + icon: tc:thermal-perception + icon_color: > + {% if + is_state('sensor.master_bedroom_thermal_comfort_humidex_perception','comfortable') + %} green {% elif + is_state('sensor.master_bedroom_thermal_comfort_humidex_perception','noticable_discomfort') + %} yellow {% elif + is_state('sensor.master_bedroom_thermal_comfort_humidex_perception','evident_discomfort') + %} amber {% elif + is_state('sensor.master_bedroom_thermal_comfort_humidex_perception','great_discomfort') + %} orange {% elif + is_state('sensor.master_bedroom_thermal_comfort_humidex_perception','dangerous_discomfort') + %} deep-orange {% elif + is_state('sensor.master_bedroom_thermal_comfort_humidex_perception','heat_stroke') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + - type: heading + icon: mdi:yoga + heading: Blue Room + heading_style: title + badges: + - type: entity + entity: sensor.blue_room_multisensor_air_temperature + tap_action: + action: more-info + - type: entity + entity: sensor.blue_room_multisensor_humidity + tap_action: + action: more-info + - type: custom:mushroom-template-card + entity: sensor.blue_room_thermal_comfort_summer_simmer_perception + primary: > + {% if + is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','cool') + %} Cool {% elif + is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','slightly_cool') + %} Comfy {% elif + is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','comfortable') + %} Comfy {% elif + is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','slightly_warm') + %} Warm {% elif + is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','increasing_discomfort') + %} Warm {% elif + is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','extremely_warm') + %} Hot {% elif + is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') + %} Hot {% elif + is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') + %} Danger {% elif + is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') + %} Danger {% else %} Unknown {% endif %} + secondary: Simmer + icon: tc:simmer-zone + icon_color: > + {% if + is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','cool') + %} indigo {% elif + is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','slightly_cool') + %} light-blue {% elif + is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','comfortable') + %} green {% elif + is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','slightly_warm') + %} light-green {% elif + is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','increasing_discomfort') + %} yellow {% elif + is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','extremely_warm') + %} amber {% elif + is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') + %} orange {% elif + is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') + %} deep-orange {% elif + is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + - type: custom:mushroom-template-card + entity: sensor.blue_room_thermal_comfort_summer_simmer_index + primary: >- + {{states('sensor.blue_room_thermal_comfort_summer_simmer_index') | + round(2) }} °F + icon: tc:simmer-zone + icon_color: > + {% if + is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','cool') + %} indigo {% elif + is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','slightly_cool') + %} light-blue {% elif + is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','comfortable') + %} green {% elif + is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','slightly_warm') + %} light-green {% elif + is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','increasing_discomfort') + %} yellow {% elif + is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','extremely_warm') + %} amber {% elif + is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') + %} orange {% elif + is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') + %} deep-orange {% elif + is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + secondary: "" + - type: custom:mushroom-template-card + entity: sensor.blue_room_thermal_comfort_dew_point_perception + primary: > + {% if + is_state('sensor.blue_room_thermal_comfort_dew_point_perception','dry') + %} Dry {% elif + is_state('sensor.blue_room_thermal_comfort_dew_point_perception','very_comfortable') + %} Very Comfy {% elif + is_state('sensor.blue_room_thermal_comfort_dew_point_perception','comfortable') + %} Comfortable {% elif + is_state('sensor.blue_room_thermal_comfort_dew_point_perception','ok_but_humid') + %} Sticky {% elif + is_state('sensor.blue_room_thermal_comfort_dew_point_perception','somewhat_uncomfortable') + %} Humid {% elif + is_state('sensor.blue_room_thermal_comfort_dew_point_perception','quite_uncomfortable') + %} Uncomfortable {% elif + is_state('sensor.blue_room_thermal_comfort_dew_point_perception','extremely_uncomfortable') + %} Oppressive {% elif + is_state('sensor.blue_room_thermal_comfort_dew_point_perception','severely_high') + %} Miserable {% else %} Unknown {% endif %} + icon: tc:dew-point + icon_color: > + {% if + is_state('sensor.blue_room_thermal_comfort_dew_point_perception','dry') + %} blue-grey {% elif + is_state('sensor.blue_room_thermal_comfort_dew_point_perception','very_comfortable') + %} green {% elif + is_state('sensor.blue_room_thermal_comfort_dew_point_perception','comfortable') + %} light-green {% elif + is_state('sensor.blue_room_thermal_comfort_dew_point_perception','ok_but_humid') + %} lime {% elif + is_state('sensor.blue_room_thermal_comfort_dew_point_perception','somewhat_uncomfortable') + %} yellow {% elif + is_state('sensor.blue_room_thermal_comfort_dew_point_perception','quite_uncomfortable') + %} amber {% elif + is_state('sensor.blue_room_thermal_comfort_dew_point_perception','extremely_uncomfortable') + %} deep-orange {% elif + is_state('sensor.blue_room_thermal_comfort_dew_point_perception','severely_high') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + secondary: Dew Point + - type: custom:mushroom-template-card + entity: sensor.blue_room_thermal_comfort_humidex_perception + primary: > + {% if + is_state('sensor.blue_room_thermal_comfort_humidex_perception','comfortable') + %} Comfortable {% elif + is_state('sensor.blue_room_thermal_comfort_humidex_perception','noticable_discomfort') + %} Uncomfortable {% elif + is_state('sensor.blue_room_thermal_comfort_humidex_perception','evident_discomfort') + %} Unbearable {% elif + is_state('sensor.blue_room_thermal_comfort_humidex_perception','great_discomfort') + %} Oppressive {% elif + is_state('sensor.blue_room_thermal_comfort_humidex_perception','dangerous_discomfort') + %} Dangerous {% elif + is_state('sensor.blue_room_thermal_comfort_humidex_perception','heat_stroke') + %} Hazardous {% else %} disabled {% endif %} + secondary: Humidex + icon: tc:thermal-perception + icon_color: > + {% if + is_state('sensor.blue_room_thermal_comfort_humidex_perception','comfortable') + %} green {% elif + is_state('sensor.blue_room_thermal_comfort_humidex_perception','noticable_discomfort') + %} yellow {% elif + is_state('sensor.blue_room_thermal_comfort_humidex_perception','evident_discomfort') + %} amber {% elif + is_state('sensor.blue_room_thermal_comfort_humidex_perception','great_discomfort') + %} orange {% elif + is_state('sensor.blue_room_thermal_comfort_humidex_perception','dangerous_discomfort') + %} deep-orange {% elif + is_state('sensor.blue_room_thermal_comfort_humidex_perception','heat_stroke') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + - type: grid + cards: + - type: heading + icon: mdi:shower + heading: Master Bathroom + heading_style: title + badges: + - type: entity + entity: sensor.master_bathroom_thermostat_temperature + tap_action: + action: more-info + - type: entity + entity: sensor.master_bathroom_thermostat_humidity + tap_action: + action: more-info + - type: custom:mushroom-template-card + entity: sensor.master_bathroom_thermal_comfort_summer_simmer_perception + primary: > + {% if + is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','cool') + %} Cool {% elif + is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','slightly_cool') + %} Comfy {% elif + is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','comfortable') + %} Comfy {% elif + is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','slightly_warm') + %} Warm {% elif + is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','increasing_discomfort') + %} Warm {% elif + is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','extremely_warm') + %} Hot {% elif + is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') + %} Hot {% elif + is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') + %} Danger {% elif + is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') + %} Danger {% else %} Unknown {% endif %} + secondary: Simmer + icon: tc:simmer-zone + icon_color: > + {% if + is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','cool') + %} indigo {% elif + is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','slightly_cool') + %} light-blue {% elif + is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','comfortable') + %} green {% elif + is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','slightly_warm') + %} light-green {% elif + is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','increasing_discomfort') + %} yellow {% elif + is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','extremely_warm') + %} amber {% elif + is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') + %} orange {% elif + is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') + %} deep-orange {% elif + is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + - type: custom:mushroom-template-card + entity: sensor.master_bathroom_thermal_comfort_summer_simmer_index + primary: >- + {{states('sensor.master_bathroom_thermal_comfort_summer_simmer_index') + | round(2) }} °F + icon: tc:simmer-zone + icon_color: > + {% if + is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','cool') + %} indigo {% elif + is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','slightly_cool') + %} light-blue {% elif + is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','comfortable') + %} green {% elif + is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','slightly_warm') + %} light-green {% elif + is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','increasing_discomfort') + %} yellow {% elif + is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','extremely_warm') + %} amber {% elif + is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') + %} orange {% elif + is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') + %} deep-orange {% elif + is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + secondary: "" + - type: custom:mushroom-template-card + entity: sensor.master_bathroom_thermal_comfort_dew_point_perception + primary: > + {% if + is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','dry') + %} Dry {% elif + is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','very_comfortable') + %} Very Comfy {% elif + is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','comfortable') + %} Comfortable {% elif + is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','ok_but_humid') + %} Sticky {% elif + is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','somewhat_uncomfortable') + %} Humid {% elif + is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','quite_uncomfortable') + %} Uncomfortable {% elif + is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','extremely_uncomfortable') + %} Oppressive {% elif + is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','severely_high') + %} Miserable {% else %} Unknown {% endif %} + icon: tc:dew-point + icon_color: > + {% if + is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','dry') + %} blue-grey {% elif + is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','very_comfortable') + %} green {% elif + is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','comfortable') + %} light-green {% elif + is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','ok_but_humid') + %} lime {% elif + is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','somewhat_uncomfortable') + %} yellow {% elif + is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','quite_uncomfortable') + %} amber {% elif + is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','extremely_uncomfortable') + %} deep-orange {% elif + is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','severely_high') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + secondary: Dew Point + - type: custom:mushroom-template-card + entity: sensor.master_bathroom_thermal_comfort_humidex_perception + primary: > + {% if + is_state('sensor.master_bathroom_thermal_comfort_humidex_perception','comfortable') + %} Comfortable {% elif + is_state('sensor.master_bathroom_thermal_comfort_humidex_perception','noticable_discomfort') + %} Uncomfortable {% elif + is_state('sensor.master_bathroom_thermal_comfort_humidex_perception','evident_discomfort') + %} Unbearable {% elif + is_state('sensor.master_bathroom_thermal_comfort_humidex_perception','great_discomfort') + %} Oppressive {% elif + is_state('sensor.master_bathroom_thermal_comfort_humidex_perception','dangerous_discomfort') + %} Dangerous {% elif + is_state('sensor.master_bathroom_thermal_comfort_humidex_perception','heat_stroke') + %} Hazardous {% else %} disabled {% endif %} + secondary: Humidex + icon: tc:thermal-perception + icon_color: > + {% if + is_state('sensor.master_bathroom_thermal_comfort_humidex_perception','comfortable') + %} green {% elif + is_state('sensor.master_bathroom_thermal_comfort_humidex_perception','noticable_discomfort') + %} yellow {% elif + is_state('sensor.master_bathroom_thermal_comfort_humidex_perception','evident_discomfort') + %} amber {% elif + is_state('sensor.master_bathroom_thermal_comfort_humidex_perception','great_discomfort') + %} orange {% elif + is_state('sensor.master_bathroom_thermal_comfort_humidex_perception','dangerous_discomfort') + %} deep-orange {% elif + is_state('sensor.master_bathroom_thermal_comfort_humidex_perception','heat_stroke') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + - type: heading + icon: mdi:washing-machine + heading: Utility Room + heading_style: title + badges: + - type: entity + entity: sensor.utility_room_thermostat_temperature + tap_action: + action: more-info + - type: entity + entity: sensor.utility_room_thermostat_humidity + tap_action: + action: more-info + - type: custom:mushroom-template-card + entity: sensor.utility_room_thermal_comfort_summer_simmer_perception + primary: > + {% if + is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','cool') + %} Cool {% elif + is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','slightly_cool') + %} Comfy {% elif + is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','comfortable') + %} Comfy {% elif + is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','slightly_warm') + %} Warm {% elif + is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','increasing_discomfort') + %} Warm {% elif + is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','extremely_warm') + %} Hot {% elif + is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') + %} Hot {% elif + is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') + %} Danger {% elif + is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') + %} Danger {% else %} Unknown {% endif %} + secondary: Simmer + icon: tc:simmer-zone + icon_color: > + {% if + is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','cool') + %} indigo {% elif + is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','slightly_cool') + %} light-blue {% elif + is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','comfortable') + %} green {% elif + is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','slightly_warm') + %} light-green {% elif + is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','increasing_discomfort') + %} yellow {% elif + is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','extremely_warm') + %} amber {% elif + is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') + %} orange {% elif + is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') + %} deep-orange {% elif + is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + - type: custom:mushroom-template-card + entity: sensor.utility_room_thermal_comfort_summer_simmer_index + primary: >- + {{states('sensor.utility_room_thermal_comfort_summer_simmer_index') | + round(2) }} °F + icon: tc:simmer-zone + icon_color: > + {% if + is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','cool') + %} indigo {% elif + is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','slightly_cool') + %} light-blue {% elif + is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','comfortable') + %} green {% elif + is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','slightly_warm') + %} light-green {% elif + is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','increasing_discomfort') + %} yellow {% elif + is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','extremely_warm') + %} amber {% elif + is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') + %} orange {% elif + is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') + %} deep-orange {% elif + is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + secondary: "" + - type: custom:mushroom-template-card + entity: sensor.utility_room_thermal_comfort_dew_point_perception + primary: > + {% if + is_state('sensor.utility_room_thermal_comfort_dew_point_perception','dry') + %} Dry {% elif + is_state('sensor.utility_room_thermal_comfort_dew_point_perception','very_comfortable') + %} Very Comfy {% elif + is_state('sensor.utility_room_thermal_comfort_dew_point_perception','comfortable') + %} Comfortable {% elif + is_state('sensor.utility_room_thermal_comfort_dew_point_perception','ok_but_humid') + %} Sticky {% elif + is_state('sensor.utility_room_thermal_comfort_dew_point_perception','somewhat_uncomfortable') + %} Humid {% elif + is_state('sensor.utility_room_thermal_comfort_dew_point_perception','quite_uncomfortable') + %} Uncomfortable {% elif + is_state('sensor.utility_room_thermal_comfort_dew_point_perception','extremely_uncomfortable') + %} Oppressive {% elif + is_state('sensor.utility_room_thermal_comfort_dew_point_perception','severely_high') + %} Miserable {% else %} Unknown {% endif %} + icon: tc:dew-point + icon_color: > + {% if + is_state('sensor.utility_room_thermal_comfort_dew_point_perception','dry') + %} blue-grey {% elif + is_state('sensor.utility_room_thermal_comfort_dew_point_perception','very_comfortable') + %} green {% elif + is_state('sensor.utility_room_thermal_comfort_dew_point_perception','comfortable') + %} light-green {% elif + is_state('sensor.utility_room_thermal_comfort_dew_point_perception','ok_but_humid') + %} lime {% elif + is_state('sensor.utility_room_thermal_comfort_dew_point_perception','somewhat_uncomfortable') + %} yellow {% elif + is_state('sensor.utility_room_thermal_comfort_dew_point_perception','quite_uncomfortable') + %} amber {% elif + is_state('sensor.utility_room_thermal_comfort_dew_point_perception','extremely_uncomfortable') + %} deep-orange {% elif + is_state('sensor.utility_room_thermal_comfort_dew_point_perception','severely_high') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + secondary: Dew Point + - type: custom:mushroom-template-card + entity: sensor.utility_room_thermal_comfort_humidex_perception + primary: > + {% if + is_state('sensor.utility_room_thermal_comfort_humidex_perception','comfortable') + %} Comfortable {% elif + is_state('sensor.utility_room_thermal_comfort_humidex_perception','noticable_discomfort') + %} Uncomfortable {% elif + is_state('sensor.utility_room_thermal_comfort_humidex_perception','evident_discomfort') + %} Unbearable {% elif + is_state('sensor.utility_room_thermal_comfort_humidex_perception','great_discomfort') + %} Oppressive {% elif + is_state('sensor.utility_room_thermal_comfort_humidex_perception','dangerous_discomfort') + %} Dangerous {% elif + is_state('sensor.utility_room_thermal_comfort_humidex_perception','heat_stroke') + %} Hazardous {% else %} disabled {% endif %} + secondary: Humidex + icon: tc:thermal-perception + icon_color: > + {% if + is_state('sensor.utility_room_thermal_comfort_humidex_perception','comfortable') + %} green {% elif + is_state('sensor.utility_room_thermal_comfort_humidex_perception','noticable_discomfort') + %} yellow {% elif + is_state('sensor.utility_room_thermal_comfort_humidex_perception','evident_discomfort') + %} amber {% elif + is_state('sensor.utility_room_thermal_comfort_humidex_perception','great_discomfort') + %} orange {% elif + is_state('sensor.utility_room_thermal_comfort_humidex_perception','dangerous_discomfort') + %} deep-orange {% elif + is_state('sensor.utility_room_thermal_comfort_humidex_perception','heat_stroke') + %} red {% else %} disabled {% endif %} + tap_action: + action: more-info + - type: grid cards: - # - type: horizontal-stack - # cards: - # # - type: custom:mushroom-title-card - # # title: "{{states('sensor.energy_tariff')}}" - # # subtitle: "{{states('sensor.energy_cost')}} $/kWh" - # - type: custom:mushroom-chips-card - # chips: - # - type: back - # - type: custom:mushroom-title-card - # title: HVAC - type: horizontal-stack cards: - - type: vertical-stack - cards: - - type: custom:mushroom-title-card - title: Outside - alignment: center - - type: horizontal-stack - cards: - - type: custom:mushroom-entity-card - entity: sensor.outdoor_temperature - name: Temperature - - type: custom:mushroom-entity-card - entity: sensor.outdoor_humidity - name: Humidity - - type: horizontal-stack - cards: - - type: custom:mushroom-template-card - entity: sensor.thermal_comfort_dew_point_perception - primary: Dew Point Perception - secondary: > - {% if is_state('sensor.thermal_comfort_dew_point_perception','dry') %} - Dry - {% elif is_state('sensor.thermal_comfort_dew_point_perception','very_comfortable') %} - Very Comfy - {% elif is_state('sensor.thermal_comfort_dew_point_perception','comfortable') %} - Comfy - {% elif is_state('sensor.thermal_comfort_dew_point_perception','ok_but_humid') %} - Humid - {% elif is_state('sensor.thermal_comfort_dew_point_perception','somewhat_uncomfortable') %} - Somewhat Uncomfy - {% elif is_state('sensor.thermal_comfort_dew_point_perception','quite_uncomfortable') %} - Quite Uncomfy - {% elif is_state('sensor.thermal_comfort_dew_point_perception','extremely_uncomfortable') %} - Extremely Uncomfy - {% elif is_state('sensor.thermal_comfort_dew_point_perception','severely_high') %} - Severely High - {% endif %} - icon: tc:dew-point - icon_color: > - {% if is_state('sensor.thermal_comfort_dew_point_perception','dry') %} - gray - {% elif is_state('sensor.thermal_comfort_dew_point_perception','very_comfortable') %} - green - {% elif is_state('sensor.thermal_comfort_dew_point_perception','comfortable') %} - green - {% elif is_state('sensor.thermal_comfort_dew_point_perception','ok_but_humid') %} - blue - {% elif is_state('sensor.thermal_comfort_dew_point_perception','somewhat_uncomfortable') %} - yellow - {% elif is_state('sensor.thermal_comfort_dew_point_perception','quite_uncomfortable') %} - orange - {% elif is_state('sensor.thermal_comfort_dew_point_perception','extremely_uncomfortable') %} - orange - {% elif is_state('sensor.thermal_comfort_dew_point_perception','severely_high') %} - red - {% endif %} - tap_action: - action: more-info - - type: custom:mushroom-template-card - entity: sensor.thermal_comfort_relative_strain_perception - primary: Relative Strain - secondary: > - {% if is_state('sensor.thermal_comfort_relative_strain_perception','comfortable') %} - Comfy - {% elif is_state('sensor.thermal_comfort_relative_strain_perception','slight_discomfort') %} - Slight Discomfort - {% elif is_state('sensor.thermal_comfort_relative_strain_perception','discomfort') %} - Discomfort - {% elif is_state('sensor.thermal_comfort_relative_strain_perception','significant_discomfort') %} - Significant Discomfort - {% elif is_state('sensor.thermal_comfort_relative_strain_perception','extreme_discomfort') %} - Extreme Discomfort - {% endif %} - icon: tc:dew-point-alternative - icon_color: > - {% if is_state('sensor.thermal_comfort_relative_strain_perception','comfortable') %} - green - {% elif is_state('sensor.thermal_comfort_relative_strain_perception','slight_discomfort') %} - yellow - {% elif is_state('sensor.thermal_comfort_relative_strain_perception','discomfort') %} - orange - {% elif is_state('sensor.thermal_comfort_relative_strain_perception','significant_discomfort') %} - red - {% elif is_state('sensor.thermal_comfort_relative_strain_perception','extreme_discomfort') %} - red - {% endif %} - tap_action: - action: more-info - - type: horizontal-stack - cards: - - type: custom:mushroom-template-card - entity: sensor.thermal_comfort_humidex_perception - primary: Humidex - secondary: > - {% if is_state('sensor.thermal_comfort_humidex_perception','comfortable') %} - Comfy - {% elif is_state('sensor.thermal_comfort_humidex_perception','noticable_discomfort') %} - Noticable Discomfort - {% elif is_state('sensor.thermal_comfort_humidex_perception','evident_discomfort') %} - Evident Discomfort - {% elif is_state('sensor.thermal_comfort_humidex_perception','great_discomfort') %} - Great Discomfort - {% elif is_state('sensor.thermal_comfort_humidex_perception','dangerous_discomfort') %} - Dangerous - {% elif is_state('sensor.thermal_comfort_humidex_perception','heat_stroke') %} - Heat Stroke - {% endif %} - icon: tc:thermal-perception - icon_color: > - {% if is_state('sensor.thermal_comfort_humidex_perception','comfortable') %} - green - {% elif is_state('sensor.thermal_comfort_humidex_perception','noticable_discomfort') %} - yellow - {% elif is_state('sensor.thermal_comfort_humidex_perception','evident_discomfort') %} - orange - {% elif is_state('sensor.thermal_comfort_humidex_perception','great_discomfort') %} - orange - {% elif is_state('sensor.thermal_comfort_humidex_perception','dangerous_discomfort') %} - red - {% elif is_state('sensor.thermal_comfort_humidex_perception','heat_stroke') %} - red - {% endif %} - tap_action: - action: more-info - - type: custom:mushroom-template-card - entity: sensor.thermal_comfort_summer_scharlau_perception - primary: Summer Scharlau - secondary: > - {% if is_state('sensor.thermal_comfort_summer_scharlau_perception','comfortable') %} - Comfy - {% elif is_state('sensor.thermal_comfort_summer_scharlau_perception','slightly_uncomfortable') %} - Slightly Uncomfy - {% elif is_state('sensor.thermal_comfort_summer_scharlau_perception','moderately_uncomfortable') %} - Moderatly Uncomfy - {% elif is_state('sensor.thermal_comfort_summer_scharlau_perception','highly_uncomfortable') %} - Highly Uncomfortable - {% elif is_state('sensor.thermal_comfort_summer_scharlau_perception','outside_calculable_range') %} - Outside Calculable Range - {% endif %} - icon: > - {% if is_state('sensor.thermal_comfort_summer_scharlau_perception','comfortable') %} - mdi:thermometer-low - {% elif is_state('sensor.thermal_comfort_summer_scharlau_perception','slightly_uncomfortable') %} - mdi:thermometer - {% elif is_state('sensor.thermal_comfort_summer_scharlau_perception','moderately_uncomfortable') %} - mdi:thermometer-high - {% elif is_state('sensor.thermal_comfort_summer_scharlau_perception','highly_uncomfortable') %} - mdi:thermometer-alert - {% elif is_state('sensor.thermal_comfort_summer_scharlau_perception','outside_calculable_range') %} - mdi:thermometer-low - {% endif %} - icon_color: > - {% if is_state('sensor.thermal_comfort_summer_scharlau_perception','comfortable') %} - green - {% elif is_state('sensor.thermal_comfort_summer_scharlau_perception','slightly_uncomfortable') %} - yellow - {% elif is_state('sensor.thermal_comfort_summer_scharlau_perception','moderately_uncomfortable') %} - orange - {% elif is_state('sensor.thermal_comfort_summer_scharlau_perception','highly_uncomfortable') %} - red - {% elif is_state('sensor.thermal_comfort_summer_scharlau_perception','outside_calculable_range') %} - gray - {% endif %} - tap_action: - action: more-info - - type: horizontal-stack - cards: - - type: custom:mushroom-template-card - entity: sensor.thermal_comfort_summer_simmer_perception - primary: Simmer Simmer - secondary: > - {% if is_state('sensor.thermal_comfort_summer_simmer_perception','cool') %} - Cool - {% elif is_state('sensor.thermal_comfort_summer_simmer_perception','slightly_cool') %} - Cool - {% elif is_state('sensor.thermal_comfort_summer_simmer_perception','comfortable') %} - Comfy - {% elif is_state('sensor.thermal_comfort_summer_simmer_perception','slightly_warm') %} - Warm - {% elif is_state('sensor.thermal_comfort_summer_simmer_perception','increasing_discomfort') %} - Warm - {% elif is_state('sensor.thermal_comfort_summer_simmer_perception','extremely_warm') %} - Hot - {% elif is_state('sensor.thermal_comfort_summer_simmer_perception','danger_of_heatstroke') %} - Hot - {% elif is_state('sensor.thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') %} - Danger - {% elif is_state('sensor.thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') %} - Danger - {% endif %} - icon: tc:simmer-zone - icon_color: > - {% if is_state('sensor.thermal_comfort_summer_simmer_perception','cool') %} - blue - {% elif is_state('sensor.thermal_comfort_summer_simmer_perception','slightly_cool') %} - blue - {% elif is_state('sensor.thermal_comfort_summer_simmer_perception','comfortable') %} - green - {% elif is_state('sensor.thermal_comfort_summer_simmer_perception','slightly_warm') %} - yellow - {% elif is_state('sensor.thermal_comfort_summer_simmer_perception','increasing_discomfort') %} - yellow - {% elif is_state('sensor.thermal_comfort_summer_simmer_perception','extremely_warm') %} - orange - {% elif is_state('sensor.thermal_comfort_summer_simmer_perception','danger_of_heatstroke') %} - orange - {% elif is_state('sensor.thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') %} - red - {% elif is_state('sensor.thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') %} - red - {% endif %} - tap_action: - action: more-info - - type: custom:mushroom-template-card - entity: sensor.thermal_comfort_thoms_discomfort_perception - primary: Thoms - secondary: > - {% if is_state('sensor.thermal_comfort_thoms_discomfort_perception','no_discomfort') %} - No discomfort - {% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','less_than_half') %} - Less than half - {% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','more_than_half') %} - More than half - {% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','most') %} - Most - {% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','everyone') %} - Everyone - {% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','dangerous') %} - Dangerous - {% endif %} - icon: tc:heat-index - icon_color: > - {% if is_state('sensor.thermal_comfort_thoms_discomfort_perception','no_discomfort') %} - blue - {% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','less_than_half') %} - yellow - {% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','more_than_half') %} - orange - {% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','most') %} - orange - {% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','everyone') %} - red - {% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','dangerous') %} - red - {% endif %} - tap_action: - action: more-info - - type: horizontal-stack - cards: - - type: custom:mushroom-template-card - entity: sensor.thermal_comfort_winter_scharlau_perception - primary: Winter Scharlau - secondary: > - {% if is_state('sensor.thermal_comfort_winter_scharlau_perception','comfortable') %} - Comfy - {% elif is_state('sensor.thermal_comfort_winter_scharlau_perception','slightly_uncomfortable') %} - Slightly Uncomfy - {% elif is_state('sensor.thermal_comfort_winter_scharlau_perception','moderatly_uncomfortable') %} - Moderatly Uncomfy - {% elif is_state('sensor.thermal_comfort_winter_scharlau_perception','highly_uncomfortable') %} - Highly Uncomfortable - {% elif is_state('sensor.thermal_comfort_winter_scharlau_perception','outside_calculable_range') %} - Outside Calculable Range - {% endif %} - icon: > - {% if is_state('sensor.thermal_comfort_winter_scharlau_perception','comfortable') %} - mdi:snowflake-off - {% elif is_state('sensor.thermal_comfort_winter_scharlau_perception','slightly_uncomfortable') %} - mdi:snowflake - {% elif is_state('sensor.thermal_comfort_winter_scharlau_perception','moderatly_uncomfortable') %} - mdi:snowflake-thermometer - {% elif is_state('sensor.thermal_comfort_winter_scharlau_perception','highly_uncomfortable') %} - mdi:snowflake-alert - {% elif is_state('sensor.thermal_comfort_winter_scharlau_perception','outside_calculable_range') %} - mdi:snowflake-off - {% endif %} - icon_color: > - {% if is_state('sensor.thermal_comfort_winter_scharlau_perception','comfortable') %} - green - {% elif is_state('sensor.thermal_comfort_winter_scharlau_perception','slightly_uncomfortable') %} - yellow - {% elif is_state('sensor.thermal_comfort_winter_scharlau_perception','moderatly_uncomfortable') %} - orange - {% elif is_state('sensor.thermal_comfort_winter_scharlau_perception','highly_uncomfortable') %} - red - {% elif is_state('sensor.thermal_comfort_winter_scharlau_perception','outside_calculable_range') %} - gray - {% endif %} - tap_action: - action: more-info - - type: custom:mushroom-entity-card - entity: sensor.thermal_comfort_frost_risk - name: Frost Risk - - - type: vertical-stack - cards: - - type: custom:mushroom-title-card - title: Front Room - alignment: center - - type: horizontal-stack - cards: - - type: custom:mushroom-template-card - entity: sensor.front_room_thermal_comfort_dew_point_perception - primary: Dew Point - secondary: > - {% if is_state('sensor.front_room_thermal_comfort_dew_point_perception','dry') %} - Dry - {% elif is_state('sensor.front_room_thermal_comfort_dew_point_perception','very_comfortable') %} - Very Comfy - {% elif is_state('sensor.front_room_thermal_comfort_dew_point_perception','comfortable') %} - Comfy - {% elif is_state('sensor.front_room_thermal_comfort_dew_point_perception','ok_but_humid') %} - Humid - {% elif is_state('sensor.front_room_thermal_comfort_dew_point_perception','somewhat_uncomfortable') %} - Somewhat Uncomfy - {% elif is_state('sensor.front_room_thermal_comfort_dew_point_perception','quite_uncomfortable') %} - Quite Uncomfy - {% elif is_state('sensor.front_room_thermal_comfort_dew_point_perception','extremely_uncomfortable') %} - Extremely Uncomfy - {% elif is_state('sensor.front_room_thermal_comfort_dew_point_perception','severely_high') %} - Severely High - {% endif %} - icon: tc:dew-point - icon_color: > - {% if is_state('sensor.front_room_thermal_comfort_dew_point_perception','dry') %} - gray - {% elif is_state('sensor.front_room_thermal_comfort_dew_point_perception','very_comfortable') %} - green - {% elif is_state('sensor.front_room_thermal_comfort_dew_point_perception','comfortable') %} - green - {% elif is_state('sensor.front_room_thermal_comfort_dew_point_perception','ok_but_humid') %} - blue - {% elif is_state('sensor.front_room_thermal_comfort_dew_point_perception','somewhat_uncomfortable') %} - yellow - {% elif is_state('sensor.front_room_thermal_comfort_dew_point_perception','quite_uncomfortable') %} - orange - {% elif is_state('sensor.front_room_thermal_comfort_dew_point_perception','extremely_uncomfortable') %} - orange - {% elif is_state('sensor.front_room_thermal_comfort_dew_point_perception','severely_high') %} - red - {% endif %} - tap_action: - action: more-info - - type: custom:mushroom-template-card - entity: sensor.front_room_thermal_comfort_humidex_perception - primary: Humidex - secondary: > - {% if is_state('sensor.front_room_thermal_comfort_humidex_perception','comfortable') %} - Comfy - {% elif is_state('sensor.front_room_thermal_comfort_humidex_perception','noticable_discomfort') %} - Noticable Discomfort - {% elif is_state('sensor.front_room_thermal_comfort_humidex_perception','evident_discomfort') %} - Evident Discomfort - {% elif is_state('sensor.front_room_thermal_comfort_humidex_perception','great_discomfort') %} - Great Discomfort - {% elif is_state('sensor.front_room_thermal_comfort_humidex_perception','dangerous_discomfort') %} - Dangerous - {% elif is_state('sensor.front_room_thermal_comfort_humidex_perception','heat_stroke') %} - Heat Stroke - {% endif %} - icon: tc:thermal-perception - icon_color: > - {% if is_state('sensor.front_room_thermal_comfort_humidex_perception','comfortable') %} - green - {% elif is_state('sensor.front_room_thermal_comfort_humidex_perception','noticable_discomfort') %} - yellow - {% elif is_state('sensor.front_room_thermal_comfort_humidex_perception','evident_discomfort') %} - orange - {% elif is_state('sensor.front_room_thermal_comfort_humidex_perception','great_discomfort') %} - orange - {% elif is_state('sensor.front_room_thermal_comfort_humidex_perception','dangerous_discomfort') %} - red - {% elif is_state('sensor.front_room_thermal_comfort_humidex_perception','heat_stroke') %} - red - {% endif %} - tap_action: - action: more-info - - type: horizontal-stack - cards: - - type: custom:mushroom-template-card - entity: sensor.front_room_thermal_comfort_summer_simmer_perception - primary: Simmer - secondary: > - {% if is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','cool') %} - Cool - {% elif is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','slightly_cool') %} - Cool - {% elif is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','comfortable') %} - Comfy - {% elif is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','slightly_warm') %} - Warm - {% elif is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','increasing_discomfort') %} - Warm - {% elif is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','extremely_warm') %} - Hot - {% elif is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') %} - Hot - {% elif is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') %} - Danger - {% elif is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') %} - Danger - {% endif %} - icon: tc:simmer-zone - icon_color: > - {% if is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','cool') %} - blue - {% elif is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','slightly_cool') %} - blue - {% elif is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','comfortable') %} - green - {% elif is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','slightly_warm') %} - yellow - {% elif is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','increasing_discomfort') %} - yellow - {% elif is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','extremely_warm') %} - orange - {% elif is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') %} - orange - {% elif is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') %} - red - {% elif is_state('sensor.front_room_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') %} - red - {% endif %} - tap_action: - action: more-info - - type: custom:mushroom-template-card - entity: sensor.front_room_thermal_comfort_thoms_discomfort_perception - primary: Thoms - secondary: > - {% if is_state('sensor.front_room_thermal_comfort_thoms_discomfort_perception','no_discomfort') %} - No discomfort - {% elif is_state('sensor.front_room_thermal_comfort_thoms_discomfort_perception','less_than_half') %} - Less than half - {% elif is_state('sensor.front_room_thermal_comfort_thoms_discomfort_perception','more_than_half') %} - More than half - {% elif is_state('sensor.front_room_thermal_comfort_thoms_discomfort_perception','most') %} - Most - {% elif is_state('sensor.front_room_thermal_comfort_thoms_discomfort_perception','everyone') %} - Everyone - {% elif is_state('sensor.front_room_thermal_comfort_thoms_discomfort_perception','dangerous') %} - Dangerous - {% endif %} - icon: tc:heat-index - icon_color: > - {% if is_state('sensor.front_room_thermal_comfort_thoms_discomfort_perception','no_discomfort') %} - blue - {% elif is_state('sensor.front_room_thermal_comfort_thoms_discomfort_perception','less_than_half') %} - yellow - {% elif is_state('sensor.front_room_thermal_comfort_thoms_discomfort_perception','more_than_half') %} - yellow - {% elif is_state('sensor.front_room_thermal_comfort_thoms_discomfort_perception','most') %} - orange - {% elif is_state('sensor.front_room_thermal_comfort_thoms_discomfort_perception','everyone') %} - orange - {% elif is_state('sensor.front_room_thermal_comfort_thoms_discomfort_perception','dangerous') %} - red - {% endif %} - tap_action: - action: more-info - - - type: custom:mushroom-title-card - title: Computer Area - alignment: center - - type: horizontal-stack - cards: - - type: custom:mushroom-template-card - entity: sensor.computer_area_thermal_comfort_dew_point_perception - primary: Dew Point - secondary: > - {% if is_state('sensor.computer_area_thermal_comfort_dew_point_perception','dry') %} - Dry - {% elif is_state('sensor.computer_area_thermal_comfort_dew_point_perception','very_comfortable') %} - Very Comfy - {% elif is_state('sensor.computer_area_thermal_comfort_dew_point_perception','comfortable') %} - Comfy - {% elif is_state('sensor.computer_area_thermal_comfort_dew_point_perception','ok_but_humid') %} - Humid - {% elif is_state('sensor.computer_area_thermal_comfort_dew_point_perception','somewhat_uncomfortable') %} - Somewhat Uncomfy - {% elif is_state('sensor.computer_area_thermal_comfort_dew_point_perception','quite_uncomfortable') %} - Quite Uncomfy - {% elif is_state('sensor.computer_area_thermal_comfort_dew_point_perception','extremely_uncomfortable') %} - Extremely Uncomfy - {% elif is_state('sensor.computer_area_thermal_comfort_dew_point_perception','severely_high') %} - Severely High - {% endif %} - icon: tc:dew-point - icon_color: > - {% if is_state('sensor.computer_area_thermal_comfort_dew_point_perception','dry') %} - gray - {% elif is_state('sensor.computer_area_thermal_comfort_dew_point_perception','very_comfortable') %} - green - {% elif is_state('sensor.computer_area_thermal_comfort_dew_point_perception','comfortable') %} - green - {% elif is_state('sensor.computer_area_thermal_comfort_dew_point_perception','ok_but_humid') %} - blue - {% elif is_state('sensor.computer_area_thermal_comfort_dew_point_perception','somewhat_uncomfortable') %} - yellow - {% elif is_state('sensor.computer_area_thermal_comfort_dew_point_perception','quite_uncomfortable') %} - orange - {% elif is_state('sensor.computer_area_thermal_comfort_dew_point_perception','extremely_uncomfortable') %} - orange - {% elif is_state('sensor.computer_area_thermal_comfort_dew_point_perception','severely_high') %} - red - {% endif %} - tap_action: - action: more-info - - type: custom:mushroom-template-card - entity: sensor.computer_area_thermal_comfort_humidex_perception - primary: Humidex - secondary: > - {% if is_state('sensor.computer_area_thermal_comfort_humidex_perception','comfortable') %} - Comfy - {% elif is_state('sensor.computer_area_thermal_comfort_humidex_perception','noticable_discomfort') %} - Noticable Discomfort - {% elif is_state('sensor.computer_area_thermal_comfort_humidex_perception','evident_discomfort') %} - Evident Discomfort - {% elif is_state('sensor.computer_area_thermal_comfort_humidex_perception','great_discomfort') %} - Great Discomfort - {% elif is_state('sensor.computer_area_thermal_comfort_humidex_perception','dangerous_discomfort') %} - Dangerous - {% elif is_state('sensor.computer_area_thermal_comfort_humidex_perception','heat_stroke') %} - Heat Stroke - {% endif %} - icon: tc:thermal-perception - icon_color: > - {% if is_state('sensor.computer_area_thermal_comfort_humidex_perception','comfortable') %} - green - {% elif is_state('sensor.computer_area_thermal_comfort_humidex_perception','noticable_discomfort') %} - yellow - {% elif is_state('sensor.computer_area_thermal_comfort_humidex_perception','evident_discomfort') %} - orange - {% elif is_state('sensor.computer_area_thermal_comfort_humidex_perception','great_discomfort') %} - orange - {% elif is_state('sensor.computer_area_thermal_comfort_humidex_perception','dangerous_discomfort') %} - red - {% elif is_state('sensor.computer_area_thermal_comfort_humidex_perception','heat_stroke') %} - red - {% endif %} - tap_action: - action: more-info - - type: horizontal-stack - cards: - - type: custom:mushroom-template-card - entity: sensor.computer_area_thermal_comfort_summer_simmer_perception - primary: Simmer - secondary: > - {% if is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','cool') %} - Cool - {% elif is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','slightly_cool') %} - Cool - {% elif is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','comfortable') %} - Comfy - {% elif is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','slightly_warm') %} - Warm - {% elif is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','increasing_discomfort') %} - Warm - {% elif is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','extremely_warm') %} - Hot - {% elif is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') %} - Hot - {% elif is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') %} - Danger - {% elif is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') %} - Danger - {% endif %} - icon: tc:simmer-zone - icon_color: > - {% if is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','cool') %} - blue - {% elif is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','slightly_cool') %} - blue - {% elif is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','comfortable') %} - green - {% elif is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','slightly_warm') %} - yellow - {% elif is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','increasing_discomfort') %} - yellow - {% elif is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','extremely_warm') %} - orange - {% elif is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') %} - orange - {% elif is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') %} - red - {% elif is_state('sensor.computer_area_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') %} - red - {% endif %} - tap_action: - action: more-info - - type: custom:mushroom-template-card - entity: sensor.computer_area_thermal_comfort_thoms_discomfort_perception - primary: Thoms - secondary: > - {% if is_state('sensor.computer_area_thermal_comfort_thoms_discomfort_perception','no_discomfort') %} - No discomfort - {% elif is_state('sensor.computer_area_thermal_comfort_thoms_discomfort_perception','less_than_half') %} - Less than half - {% elif is_state('sensor.computer_area_thermal_comfort_thoms_discomfort_perception','more_than_half') %} - More than half - {% elif is_state('sensor.computer_area_thermal_comfort_thoms_discomfort_perception','most') %} - Most - {% elif is_state('sensor.computer_area_thermal_comfort_thoms_discomfort_perception','everyone') %} - Everyone - {% elif is_state('sensor.computer_area_thermal_comfort_thoms_discomfort_perception','dangerous') %} - Dangerous - {% endif %} - icon: tc:heat-index - icon_color: > - {% if is_state('sensor.computer_area_thermal_comfort_thoms_discomfort_perception','no_discomfort') %} - blue - {% elif is_state('sensor.computer_area_thermal_comfort_thoms_discomfort_perception','less_than_half') %} - yellow - {% elif is_state('sensor.computer_area_thermal_comfort_thoms_discomfort_perception','more_than_half') %} - yellow - {% elif is_state('sensor.computer_area_thermal_comfort_thoms_discomfort_perception','most') %} - orange - {% elif is_state('sensor.computer_area_thermal_comfort_thoms_discomfort_perception','everyone') %} - orange - {% elif is_state('sensor.computer_area_thermal_comfort_thoms_discomfort_perception','dangerous') %} - red - {% endif %} - tap_action: - action: more-info - - - type: vertical-stack - cards: - - type: custom:mushroom-title-card - title: Nursery - alignment: center - - type: horizontal-stack - cards: - - type: custom:mushroom-template-card - entity: sensor.nursery_thermal_comfort_dew_point_perception - primary: Dew Point - secondary: > - {% if is_state('sensor.nursery_thermal_comfort_dew_point_perception','dry') %} - Dry - {% elif is_state('sensor.nursery_thermal_comfort_dew_point_perception','very_comfortable') %} - Very Comfy - {% elif is_state('sensor.nursery_thermal_comfort_dew_point_perception','comfortable') %} - Comfy - {% elif is_state('sensor.nursery_thermal_comfort_dew_point_perception','ok_but_humid') %} - Humid - {% elif is_state('sensor.nursery_thermal_comfort_dew_point_perception','somewhat_uncomfortable') %} - Somewhat Uncomfy - {% elif is_state('sensor.nursery_thermal_comfort_dew_point_perception','quite_uncomfortable') %} - Quite Uncomfy - {% elif is_state('sensor.nursery_thermal_comfort_dew_point_perception','extremely_uncomfortable') %} - Extremely Uncomfy - {% elif is_state('sensor.nursery_thermal_comfort_dew_point_perception','severely_high') %} - Severely High - {% endif %} - icon: tc:dew-point - icon_color: > - {% if is_state('sensor.nursery_thermal_comfort_dew_point_perception','dry') %} - gray - {% elif is_state('sensor.nursery_thermal_comfort_dew_point_perception','very_comfortable') %} - green - {% elif is_state('sensor.nursery_thermal_comfort_dew_point_perception','comfortable') %} - green - {% elif is_state('sensor.nursery_thermal_comfort_dew_point_perception','ok_but_humid') %} - blue - {% elif is_state('sensor.nursery_thermal_comfort_dew_point_perception','somewhat_uncomfortable') %} - yellow - {% elif is_state('sensor.nursery_thermal_comfort_dew_point_perception','quite_uncomfortable') %} - orange - {% elif is_state('sensor.nursery_thermal_comfort_dew_point_perception','extremely_uncomfortable') %} - orange - {% elif is_state('sensor.nursery_thermal_comfort_dew_point_perception','severely_high') %} - red - {% endif %} - tap_action: - action: more-info - - type: custom:mushroom-template-card - entity: sensor.nursery_thermal_comfort_humidex_perception - primary: Humidex - secondary: > - {% if is_state('sensor.nursery_thermal_comfort_humidex_perception','comfortable') %} - Comfy - {% elif is_state('sensor.nursery_thermal_comfort_humidex_perception','noticable_discomfort') %} - Noticable Discomfort - {% elif is_state('sensor.nursery_thermal_comfort_humidex_perception','evident_discomfort') %} - Evident Discomfort - {% elif is_state('sensor.nursery_thermal_comfort_humidex_perception','great_discomfort') %} - Great Discomfort - {% elif is_state('sensor.nursery_thermal_comfort_humidex_perception','dangerous_discomfort') %} - Dangerous - {% elif is_state('sensor.nursery_thermal_comfort_humidex_perception','heat_stroke') %} - Heat Stroke - {% endif %} - icon: tc:thermal-perception - icon_color: > - {% if is_state('sensor.nursery_thermal_comfort_humidex_perception','comfortable') %} - green - {% elif is_state('sensor.nursery_thermal_comfort_humidex_perception','noticable_discomfort') %} - yellow - {% elif is_state('sensor.nursery_thermal_comfort_humidex_perception','evident_discomfort') %} - orange - {% elif is_state('sensor.nursery_thermal_comfort_humidex_perception','great_discomfort') %} - orange - {% elif is_state('sensor.nursery_thermal_comfort_humidex_perception','dangerous_discomfort') %} - red - {% elif is_state('sensor.nursery_thermal_comfort_humidex_perception','heat_stroke') %} - red - {% endif %} - tap_action: - action: more-info - - type: horizontal-stack - cards: - - type: custom:mushroom-template-card - entity: sensor.nursery_thermal_comfort_summer_simmer_perception - primary: Simmer - secondary: > - {% if is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','cool') %} - Cool - {% elif is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','slightly_cool') %} - Cool - {% elif is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','comfortable') %} - Comfy - {% elif is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','slightly_warm') %} - Warm - {% elif is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','increasing_discomfort') %} - Warm - {% elif is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','extremely_warm') %} - Hot - {% elif is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') %} - Hot - {% elif is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') %} - Danger - {% elif is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') %} - Danger - {% endif %} - icon: tc:simmer-zone - icon_color: > - {% if is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','cool') %} - blue - {% elif is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','slightly_cool') %} - blue - {% elif is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','comfortable') %} - green - {% elif is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','slightly_warm') %} - yellow - {% elif is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','increasing_discomfort') %} - yellow - {% elif is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','extremely_warm') %} - orange - {% elif is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') %} - orange - {% elif is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') %} - red - {% elif is_state('sensor.nursery_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') %} - red - {% endif %} - tap_action: - action: more-info - - type: custom:mushroom-template-card - entity: sensor.nursery_thermal_comfort_thoms_discomfort_perception - primary: Thoms - secondary: > - {% if is_state('sensor.nursery_thermal_comfort_thoms_discomfort_perception','no_discomfort') %} - No discomfort - {% elif is_state('sensor.nursery_thermal_comfort_thoms_discomfort_perception','less_than_half') %} - Less than half - {% elif is_state('sensor.nursery_thermal_comfort_thoms_discomfort_perception','more_than_half') %} - More than half - {% elif is_state('sensor.nursery_thermal_comfort_thoms_discomfort_perception','most') %} - Most - {% elif is_state('sensor.nursery_thermal_comfort_thoms_discomfort_perception','everyone') %} - Everyone - {% elif is_state('sensor.nursery_thermal_comfort_thoms_discomfort_perception','dangerous') %} - Dangerous - {% endif %} - icon: tc:heat-index - icon_color: > - {% if is_state('sensor.nursery_thermal_comfort_thoms_discomfort_perception','no_discomfort') %} - blue - {% elif is_state('sensor.nursery_thermal_comfort_thoms_discomfort_perception','less_than_half') %} - yellow - {% elif is_state('sensor.nursery_thermal_comfort_thoms_discomfort_perception','more_than_half') %} - yellow - {% elif is_state('sensor.nursery_thermal_comfort_thoms_discomfort_perception','most') %} - orange - {% elif is_state('sensor.nursery_thermal_comfort_thoms_discomfort_perception','everyone') %} - orange - {% elif is_state('sensor.nursery_thermal_comfort_thoms_discomfort_perception','dangerous') %} - red - {% endif %} - tap_action: - action: more-info - - - type: custom:mushroom-title-card - title: Great Room - alignment: center - - type: horizontal-stack - cards: - - type: custom:mushroom-template-card - entity: sensor.great_room_thermal_comfort_dew_point_perception - primary: Dew Point - secondary: > - {% if is_state('sensor.great_room_thermal_comfort_dew_point_perception','dry') %} - Dry - {% elif is_state('sensor.great_room_thermal_comfort_dew_point_perception','very_comfortable') %} - Very Comfy - {% elif is_state('sensor.great_room_thermal_comfort_dew_point_perception','comfortable') %} - Comfy - {% elif is_state('sensor.great_room_thermal_comfort_dew_point_perception','ok_but_humid') %} - Humid - {% elif is_state('sensor.great_room_thermal_comfort_dew_point_perception','somewhat_uncomfortable') %} - Somewhat Uncomfy - {% elif is_state('sensor.great_room_thermal_comfort_dew_point_perception','quite_uncomfortable') %} - Quite Uncomfy - {% elif is_state('sensor.great_room_thermal_comfort_dew_point_perception','extremely_uncomfortable') %} - Extremely Uncomfy - {% elif is_state('sensor.great_room_thermal_comfort_dew_point_perception','severely_high') %} - Severely High - {% endif %} - icon: tc:dew-point - icon_color: > - {% if is_state('sensor.great_room_thermal_comfort_dew_point_perception','dry') %} - gray - {% elif is_state('sensor.great_room_thermal_comfort_dew_point_perception','very_comfortable') %} - green - {% elif is_state('sensor.great_room_thermal_comfort_dew_point_perception','comfortable') %} - green - {% elif is_state('sensor.great_room_thermal_comfort_dew_point_perception','ok_but_humid') %} - blue - {% elif is_state('sensor.great_room_thermal_comfort_dew_point_perception','somewhat_uncomfortable') %} - yellow - {% elif is_state('sensor.great_room_thermal_comfort_dew_point_perception','quite_uncomfortable') %} - orange - {% elif is_state('sensor.great_room_thermal_comfort_dew_point_perception','extremely_uncomfortable') %} - orange - {% elif is_state('sensor.great_room_thermal_comfort_dew_point_perception','severely_high') %} - red - {% endif %} - tap_action: - action: more-info - - type: custom:mushroom-template-card - entity: sensor.great_room_thermal_comfort_humidex_perception - primary: Humidex - secondary: > - {% if is_state('sensor.great_room_thermal_comfort_humidex_perception','comfortable') %} - Comfy - {% elif is_state('sensor.great_room_thermal_comfort_humidex_perception','noticable_discomfort') %} - Noticable Discomfort - {% elif is_state('sensor.great_room_thermal_comfort_humidex_perception','evident_discomfort') %} - Evident Discomfort - {% elif is_state('sensor.great_room_thermal_comfort_humidex_perception','great_discomfort') %} - Great Discomfort - {% elif is_state('sensor.great_room_thermal_comfort_humidex_perception','dangerous_discomfort') %} - Dangerous - {% elif is_state('sensor.great_room_thermal_comfort_humidex_perception','heat_stroke') %} - Heat Stroke - {% endif %} - icon: tc:thermal-perception - icon_color: > - {% if is_state('sensor.great_room_thermal_comfort_humidex_perception','comfortable') %} - green - {% elif is_state('sensor.great_room_thermal_comfort_humidex_perception','noticable_discomfort') %} - yellow - {% elif is_state('sensor.great_room_thermal_comfort_humidex_perception','evident_discomfort') %} - orange - {% elif is_state('sensor.great_room_thermal_comfort_humidex_perception','great_discomfort') %} - orange - {% elif is_state('sensor.great_room_thermal_comfort_humidex_perception','dangerous_discomfort') %} - red - {% elif is_state('sensor.great_room_thermal_comfort_humidex_perception','heat_stroke') %} - red - {% endif %} - tap_action: - action: more-info - - type: horizontal-stack - cards: - - type: custom:mushroom-template-card - entity: sensor.great_room_thermal_comfort_summer_simmer_perception - primary: Simmer - secondary: > - {% if is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','cool') %} - Cool - {% elif is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','slightly_cool') %} - Cool - {% elif is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','comfortable') %} - Comfy - {% elif is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','slightly_warm') %} - Warm - {% elif is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','increasing_discomfort') %} - Warm - {% elif is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','extremely_warm') %} - Hot - {% elif is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') %} - Hot - {% elif is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') %} - Danger - {% elif is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') %} - Danger - {% endif %} - icon: tc:simmer-zone - icon_color: > - {% if is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','cool') %} - blue - {% elif is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','slightly_cool') %} - blue - {% elif is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','comfortable') %} - green - {% elif is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','slightly_warm') %} - yellow - {% elif is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','increasing_discomfort') %} - yellow - {% elif is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','extremely_warm') %} - orange - {% elif is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') %} - orange - {% elif is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') %} - red - {% elif is_state('sensor.great_room_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') %} - red - {% endif %} - tap_action: - action: more-info - - type: custom:mushroom-template-card - entity: sensor.great_room_thermal_comfort_thoms_discomfort_perception - primary: Thoms - secondary: > - {% if is_state('sensor.great_room_thermal_comfort_thoms_discomfort_perception','no_discomfort') %} - No discomfort - {% elif is_state('sensor.great_room_thermal_comfort_thoms_discomfort_perception','less_than_half') %} - Less than half - {% elif is_state('sensor.great_room_thermal_comfort_thoms_discomfort_perception','more_than_half') %} - More than half - {% elif is_state('sensor.great_room_thermal_comfort_thoms_discomfort_perception','most') %} - Most - {% elif is_state('sensor.great_room_thermal_comfort_thoms_discomfort_perception','everyone') %} - Everyone - {% elif is_state('sensor.great_room_thermal_comfort_thoms_discomfort_perception','dangerous') %} - Dangerous - {% endif %} - icon: tc:heat-index - icon_color: > - {% if is_state('sensor.great_room_thermal_comfort_thoms_discomfort_perception','no_discomfort') %} - blue - {% elif is_state('sensor.great_room_thermal_comfort_thoms_discomfort_perception','less_than_half') %} - yellow - {% elif is_state('sensor.great_room_thermal_comfort_thoms_discomfort_perception','more_than_half') %} - yellow - {% elif is_state('sensor.great_room_thermal_comfort_thoms_discomfort_perception','most') %} - orange - {% elif is_state('sensor.great_room_thermal_comfort_thoms_discomfort_perception','everyone') %} - orange - {% elif is_state('sensor.great_room_thermal_comfort_thoms_discomfort_perception','dangerous') %} - red - {% endif %} - tap_action: - action: more-info - - - type: vertical-stack - cards: - - type: custom:mushroom-title-card - title: Master Bedroom - alignment: center - - type: horizontal-stack - cards: - - type: custom:mushroom-template-card - entity: sensor.master_bedroom_thermal_comfort_dew_point_perception - primary: Dew Point - secondary: > - {% if is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','dry') %} - Dry - {% elif is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','very_comfortable') %} - Very Comfy - {% elif is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','comfortable') %} - Comfy - {% elif is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','ok_but_humid') %} - Humid - {% elif is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','somewhat_uncomfortable') %} - Somewhat Uncomfy - {% elif is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','quite_uncomfortable') %} - Quite Uncomfy - {% elif is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','extremely_uncomfortable') %} - Extremely Uncomfy - {% elif is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','severely_high') %} - Severely High - {% endif %} - icon: tc:dew-point - icon_color: > - {% if is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','dry') %} - gray - {% elif is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','very_comfortable') %} - green - {% elif is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','comfortable') %} - green - {% elif is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','ok_but_humid') %} - blue - {% elif is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','somewhat_uncomfortable') %} - yellow - {% elif is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','quite_uncomfortable') %} - orange - {% elif is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','extremely_uncomfortable') %} - orange - {% elif is_state('sensor.master_bedroom_thermal_comfort_dew_point_perception','severely_high') %} - red - {% endif %} - tap_action: - action: more-info - - type: custom:mushroom-template-card - entity: sensor.master_bedroom_thermal_comfort_humidex_perception - primary: Humidex - secondary: > - {% if is_state('sensor.master_bedroom_thermal_comfort_humidex_perception','comfortable') %} - Comfy - {% elif is_state('sensor.master_bedroom_thermal_comfort_humidex_perception','noticable_discomfort') %} - Noticable Discomfort - {% elif is_state('sensor.master_bedroom_thermal_comfort_humidex_perception','evident_discomfort') %} - Evident Discomfort - {% elif is_state('sensor.master_bedroom_thermal_comfort_humidex_perception','great_discomfort') %} - Great Discomfort - {% elif is_state('sensor.master_bedroom_thermal_comfort_humidex_perception','dangerous_discomfort') %} - Dangerous - {% elif is_state('sensor.master_bedroom_thermal_comfort_humidex_perception','heat_stroke') %} - Heat Stroke - {% endif %} - icon: tc:thermal-perception - icon_color: > - {% if is_state('sensor.master_bedroom_thermal_comfort_humidex_perception','comfortable') %} - green - {% elif is_state('sensor.master_bedroom_thermal_comfort_humidex_perception','noticable_discomfort') %} - yellow - {% elif is_state('sensor.master_bedroom_thermal_comfort_humidex_perception','evident_discomfort') %} - orange - {% elif is_state('sensor.master_bedroom_thermal_comfort_humidex_perception','great_discomfort') %} - orange - {% elif is_state('sensor.master_bedroom_thermal_comfort_humidex_perception','dangerous_discomfort') %} - red - {% elif is_state('sensor.master_bedroom_thermal_comfort_humidex_perception','heat_stroke') %} - red - {% endif %} - tap_action: - action: more-info - - type: horizontal-stack - cards: - - type: custom:mushroom-template-card - entity: sensor.master_bedroom_thermal_comfort_summer_simmer_perception - primary: Simmer - secondary: > - {% if is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','cool') %} - Cool - {% elif is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','slightly_cool') %} - Cool - {% elif is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','comfortable') %} - Comfy - {% elif is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','slightly_warm') %} - Warm - {% elif is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','increasing_discomfort') %} - Warm - {% elif is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','extremely_warm') %} - Hot - {% elif is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') %} - Hot - {% elif is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') %} - Danger - {% elif is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') %} - Danger - {% endif %} - icon: tc:simmer-zone - icon_color: > - {% if is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','cool') %} - blue - {% elif is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','slightly_cool') %} - blue - {% elif is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','comfortable') %} - green - {% elif is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','slightly_warm') %} - yellow - {% elif is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','increasing_discomfort') %} - yellow - {% elif is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','extremely_warm') %} - orange - {% elif is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') %} - orange - {% elif is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') %} - red - {% elif is_state('sensor.master_bedroom_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') %} - red - {% endif %} - tap_action: - action: more-info - - type: custom:mushroom-template-card - entity: sensor.master_bedroom_thermal_comfort_thoms_discomfort_perception - primary: Thoms - secondary: > - {% if is_state('sensor.master_bedroom_thermal_comfort_thoms_discomfort_perception','no_discomfort') %} - No discomfort - {% elif is_state('sensor.master_bedroom_thermal_comfort_thoms_discomfort_perception','less_than_half') %} - Less than half - {% elif is_state('sensor.master_bedroom_thermal_comfort_thoms_discomfort_perception','more_than_half') %} - More than half - {% elif is_state('sensor.master_bedroom_thermal_comfort_thoms_discomfort_perception','most') %} - Most - {% elif is_state('sensor.master_bedroom_thermal_comfort_thoms_discomfort_perception','everyone') %} - Everyone - {% elif is_state('sensor.master_bedroom_thermal_comfort_thoms_discomfort_perception','dangerous') %} - Dangerous - {% endif %} - icon: tc:heat-index - icon_color: > - {% if is_state('sensor.master_bedroom_thermal_comfort_thoms_discomfort_perception','no_discomfort') %} - blue - {% elif is_state('sensor.master_bedroom_thermal_comfort_thoms_discomfort_perception','less_than_half') %} - yellow - {% elif is_state('sensor.master_bedroom_thermal_comfort_thoms_discomfort_perception','more_than_half') %} - yellow - {% elif is_state('sensor.master_bedroom_thermal_comfort_thoms_discomfort_perception','most') %} - orange - {% elif is_state('sensor.master_bedroom_thermal_comfort_thoms_discomfort_perception','everyone') %} - orange - {% elif is_state('sensor.master_bedroom_thermal_comfort_thoms_discomfort_perception','dangerous') %} - red - {% endif %} - tap_action: - action: more-info - - - type: custom:mushroom-title-card - title: Blue Room - alignment: center - - type: horizontal-stack - cards: - - type: custom:mushroom-template-card - entity: sensor.blue_room_thermal_comfort_dew_point_perception - primary: Dew Point - secondary: > - {% if is_state('sensor.blue_room_thermal_comfort_dew_point_perception','dry') %} - Dry - {% elif is_state('sensor.blue_room_thermal_comfort_dew_point_perception','very_comfortable') %} - Very Comfy - {% elif is_state('sensor.blue_room_thermal_comfort_dew_point_perception','comfortable') %} - Comfy - {% elif is_state('sensor.blue_room_thermal_comfort_dew_point_perception','ok_but_humid') %} - Humid - {% elif is_state('sensor.blue_room_thermal_comfort_dew_point_perception','somewhat_uncomfortable') %} - Somewhat Uncomfy - {% elif is_state('sensor.blue_room_thermal_comfort_dew_point_perception','quite_uncomfortable') %} - Quite Uncomfy - {% elif is_state('sensor.blue_room_thermal_comfort_dew_point_perception','extremely_uncomfortable') %} - Extremely Uncomfy - {% elif is_state('sensor.blue_room_thermal_comfort_dew_point_perception','severely_high') %} - Severely High - {% endif %} - icon: tc:dew-point - icon_color: > - {% if is_state('sensor.blue_room_thermal_comfort_dew_point_perception','dry') %} - gray - {% elif is_state('sensor.blue_room_thermal_comfort_dew_point_perception','very_comfortable') %} - green - {% elif is_state('sensor.blue_room_thermal_comfort_dew_point_perception','comfortable') %} - green - {% elif is_state('sensor.blue_room_thermal_comfort_dew_point_perception','ok_but_humid') %} - blue - {% elif is_state('sensor.blue_room_thermal_comfort_dew_point_perception','somewhat_uncomfortable') %} - yellow - {% elif is_state('sensor.blue_room_thermal_comfort_dew_point_perception','quite_uncomfortable') %} - orange - {% elif is_state('sensor.blue_room_thermal_comfort_dew_point_perception','extremely_uncomfortable') %} - orange - {% elif is_state('sensor.blue_room_thermal_comfort_dew_point_perception','severely_high') %} - red - {% endif %} - tap_action: - action: more-info - - type: custom:mushroom-template-card - entity: sensor.blue_room_thermal_comfort_humidex_perception - primary: Humidex - secondary: > - {% if is_state('sensor.blue_room_thermal_comfort_humidex_perception','comfortable') %} - Comfy - {% elif is_state('sensor.blue_room_thermal_comfort_humidex_perception','noticable_discomfort') %} - Noticable Discomfort - {% elif is_state('sensor.blue_room_thermal_comfort_humidex_perception','evident_discomfort') %} - Evident Discomfort - {% elif is_state('sensor.blue_room_thermal_comfort_humidex_perception','great_discomfort') %} - Great Discomfort - {% elif is_state('sensor.blue_room_thermal_comfort_humidex_perception','dangerous_discomfort') %} - Dangerous - {% elif is_state('sensor.blue_room_thermal_comfort_humidex_perception','heat_stroke') %} - Heat Stroke - {% endif %} - icon: tc:thermal-perception - icon_color: > - {% if is_state('sensor.blue_room_thermal_comfort_humidex_perception','comfortable') %} - green - {% elif is_state('sensor.blue_room_thermal_comfort_humidex_perception','noticable_discomfort') %} - yellow - {% elif is_state('sensor.blue_room_thermal_comfort_humidex_perception','evident_discomfort') %} - orange - {% elif is_state('sensor.blue_room_thermal_comfort_humidex_perception','great_discomfort') %} - orange - {% elif is_state('sensor.blue_room_thermal_comfort_humidex_perception','dangerous_discomfort') %} - red - {% elif is_state('sensor.blue_room_thermal_comfort_humidex_perception','heat_stroke') %} - red - {% endif %} - tap_action: - action: more-info - - type: horizontal-stack - cards: - - type: custom:mushroom-template-card - entity: sensor.blue_room_thermal_comfort_summer_simmer_perception - primary: Simmer - secondary: > - {% if is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','cool') %} - Cool - {% elif is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','slightly_cool') %} - Cool - {% elif is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','comfortable') %} - Comfy - {% elif is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','slightly_warm') %} - Warm - {% elif is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','increasing_discomfort') %} - Warm - {% elif is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','extremely_warm') %} - Hot - {% elif is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') %} - Hot - {% elif is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') %} - Danger - {% elif is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') %} - Danger - {% endif %} - icon: tc:simmer-zone - icon_color: > - {% if is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','cool') %} - blue - {% elif is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','slightly_cool') %} - blue - {% elif is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','comfortable') %} - green - {% elif is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','slightly_warm') %} - yellow - {% elif is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','increasing_discomfort') %} - yellow - {% elif is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','extremely_warm') %} - orange - {% elif is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') %} - orange - {% elif is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') %} - red - {% elif is_state('sensor.blue_room_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') %} - red - {% endif %} - tap_action: - action: more-info - - type: custom:mushroom-template-card - entity: sensor.blue_room_thermal_comfort_thoms_discomfort_perception - primary: Thoms - secondary: > - {% if is_state('sensor.blue_room_thermal_comfort_thoms_discomfort_perception','no_discomfort') %} - No discomfort - {% elif is_state('sensor.blue_room_thermal_comfort_thoms_discomfort_perception','less_than_half') %} - Less than half - {% elif is_state('sensor.blue_room_thermal_comfort_thoms_discomfort_perception','more_than_half') %} - More than half - {% elif is_state('sensor.blue_room_thermal_comfort_thoms_discomfort_perception','most') %} - Most - {% elif is_state('sensor.blue_room_thermal_comfort_thoms_discomfort_perception','everyone') %} - Everyone - {% elif is_state('sensor.blue_room_thermal_comfort_thoms_discomfort_perception','dangerous') %} - Dangerous - {% endif %} - icon: tc:heat-index - icon_color: > - {% if is_state('sensor.blue_room_thermal_comfort_thoms_discomfort_perception','no_discomfort') %} - blue - {% elif is_state('sensor.blue_room_thermal_comfort_thoms_discomfort_perception','less_than_half') %} - yellow - {% elif is_state('sensor.blue_room_thermal_comfort_thoms_discomfort_perception','more_than_half') %} - yellow - {% elif is_state('sensor.blue_room_thermal_comfort_thoms_discomfort_perception','most') %} - orange - {% elif is_state('sensor.blue_room_thermal_comfort_thoms_discomfort_perception','everyone') %} - orange - {% elif is_state('sensor.blue_room_thermal_comfort_thoms_discomfort_perception','dangerous') %} - red - {% endif %} - tap_action: - action: more-info - - - type: vertical-stack - cards: - - type: custom:mushroom-title-card - title: Master Bathroom - alignment: center - - type: horizontal-stack - cards: - - type: custom:mushroom-template-card - entity: sensor.master_bathroom_thermal_comfort_dew_point_perception - primary: Dew Point - secondary: > - {% if is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','dry') %} - Dry - {% elif is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','very_comfortable') %} - Very Comfy - {% elif is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','comfortable') %} - Comfy - {% elif is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','ok_but_humid') %} - Humid - {% elif is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','somewhat_uncomfortable') %} - Somewhat Uncomfy - {% elif is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','quite_uncomfortable') %} - Quite Uncomfy - {% elif is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','extremely_uncomfortable') %} - Extremely Uncomfy - {% elif is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','severely_high') %} - Severely High - {% endif %} - icon: tc:dew-point - icon_color: > - {% if is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','dry') %} - gray - {% elif is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','very_comfortable') %} - green - {% elif is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','comfortable') %} - green - {% elif is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','ok_but_humid') %} - blue - {% elif is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','somewhat_uncomfortable') %} - yellow - {% elif is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','quite_uncomfortable') %} - orange - {% elif is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','extremely_uncomfortable') %} - orange - {% elif is_state('sensor.master_bathroom_thermal_comfort_dew_point_perception','severely_high') %} - red - {% endif %} - tap_action: - action: more-info - - type: custom:mushroom-template-card - entity: sensor.master_bathroom_thermal_comfort_humidex_perception - primary: Humidex - secondary: > - {% if is_state('sensor.master_bathroom_thermal_comfort_humidex_perception','comfortable') %} - Comfy - {% elif is_state('sensor.master_bathroom_thermal_comfort_humidex_perception','noticable_discomfort') %} - Noticable Discomfort - {% elif is_state('sensor.master_bathroom_thermal_comfort_humidex_perception','evident_discomfort') %} - Evident Discomfort - {% elif is_state('sensor.master_bathroom_thermal_comfort_humidex_perception','great_discomfort') %} - Great Discomfort - {% elif is_state('sensor.master_bathroom_thermal_comfort_humidex_perception','dangerous_discomfort') %} - Dangerous - {% elif is_state('sensor.master_bathroom_thermal_comfort_humidex_perception','heat_stroke') %} - Heat Stroke - {% endif %} - icon: tc:thermal-perception - icon_color: > - {% if is_state('sensor.master_bathroom_thermal_comfort_humidex_perception','comfortable') %} - green - {% elif is_state('sensor.master_bathroom_thermal_comfort_humidex_perception','noticable_discomfort') %} - yellow - {% elif is_state('sensor.master_bathroom_thermal_comfort_humidex_perception','evident_discomfort') %} - orange - {% elif is_state('sensor.master_bathroom_thermal_comfort_humidex_perception','great_discomfort') %} - orange - {% elif is_state('sensor.master_bathroom_thermal_comfort_humidex_perception','dangerous_discomfort') %} - red - {% elif is_state('sensor.master_bathroom_thermal_comfort_humidex_perception','heat_stroke') %} - red - {% endif %} - tap_action: - action: more-info - - type: horizontal-stack - cards: - - type: custom:mushroom-template-card - entity: sensor.master_bathroom_thermal_comfort_summer_simmer_perception - primary: Simmer - secondary: > - {% if is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','cool') %} - Cool - {% elif is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','slightly_cool') %} - Cool - {% elif is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','comfortable') %} - Comfy - {% elif is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','slightly_warm') %} - Warm - {% elif is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','increasing_discomfort') %} - Warm - {% elif is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','extremely_warm') %} - Hot - {% elif is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') %} - Hot - {% elif is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') %} - Danger - {% elif is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') %} - Danger - {% endif %} - icon: tc:simmer-zone - icon_color: > - {% if is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','cool') %} - blue - {% elif is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','slightly_cool') %} - blue - {% elif is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','comfortable') %} - green - {% elif is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','slightly_warm') %} - yellow - {% elif is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','increasing_discomfort') %} - yellow - {% elif is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','extremely_warm') %} - orange - {% elif is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') %} - orange - {% elif is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') %} - red - {% elif is_state('sensor.master_bathroom_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') %} - red - {% endif %} - tap_action: - action: more-info - - type: custom:mushroom-template-card - entity: sensor.master_bathroom_thermal_comfort_thoms_discomfort_perception - primary: Thoms - secondary: > - {% if is_state('sensor.master_bathroom_thermal_comfort_thoms_discomfort_perception','no_discomfort') %} - No discomfort - {% elif is_state('sensor.master_bathroom_thermal_comfort_thoms_discomfort_perception','less_than_half') %} - Less than half - {% elif is_state('sensor.master_bathroom_thermal_comfort_thoms_discomfort_perception','more_than_half') %} - More than half - {% elif is_state('sensor.master_bathroom_thermal_comfort_thoms_discomfort_perception','most') %} - Most - {% elif is_state('sensor.master_bathroom_thermal_comfort_thoms_discomfort_perception','everyone') %} - Everyone - {% elif is_state('sensor.master_bathroom_thermal_comfort_thoms_discomfort_perception','dangerous') %} - Dangerous - {% endif %} - icon: tc:heat-index - icon_color: > - {% if is_state('sensor.master_bathroom_thermal_comfort_thoms_discomfort_perception','no_discomfort') %} - blue - {% elif is_state('sensor.master_bathroom_thermal_comfort_thoms_discomfort_perception','less_than_half') %} - yellow - {% elif is_state('sensor.master_bathroom_thermal_comfort_thoms_discomfort_perception','more_than_half') %} - yellow - {% elif is_state('sensor.master_bathroom_thermal_comfort_thoms_discomfort_perception','most') %} - orange - {% elif is_state('sensor.master_bathroom_thermal_comfort_thoms_discomfort_perception','everyone') %} - orange - {% elif is_state('sensor.master_bathroom_thermal_comfort_thoms_discomfort_perception','dangerous') %} - red - {% endif %} - tap_action: - action: more-info - - - type: custom:mushroom-title-card - title: Utility Room - alignment: center - - type: horizontal-stack - cards: - - type: custom:mushroom-template-card - entity: sensor.utility_room_thermal_comfort_dew_point_perception - primary: Dew Point - secondary: > - {% if is_state('sensor.utility_room_thermal_comfort_dew_point_perception','dry') %} - Dry - {% elif is_state('sensor.utility_room_thermal_comfort_dew_point_perception','very_comfortable') %} - Very Comfy - {% elif is_state('sensor.utility_room_thermal_comfort_dew_point_perception','comfortable') %} - Comfy - {% elif is_state('sensor.utility_room_thermal_comfort_dew_point_perception','ok_but_humid') %} - Humid - {% elif is_state('sensor.utility_room_thermal_comfort_dew_point_perception','somewhat_uncomfortable') %} - Somewhat Uncomfy - {% elif is_state('sensor.utility_room_thermal_comfort_dew_point_perception','quite_uncomfortable') %} - Quite Uncomfy - {% elif is_state('sensor.utility_room_thermal_comfort_dew_point_perception','extremely_uncomfortable') %} - Extremely Uncomfy - {% elif is_state('sensor.utility_room_thermal_comfort_dew_point_perception','severely_high') %} - Severely High - {% endif %} - icon: tc:dew-point - icon_color: > - {% if is_state('sensor.utility_room_thermal_comfort_dew_point_perception','dry') %} - gray - {% elif is_state('sensor.utility_room_thermal_comfort_dew_point_perception','very_comfortable') %} - green - {% elif is_state('sensor.utility_room_thermal_comfort_dew_point_perception','comfortable') %} - green - {% elif is_state('sensor.utility_room_thermal_comfort_dew_point_perception','ok_but_humid') %} - blue - {% elif is_state('sensor.utility_room_thermal_comfort_dew_point_perception','somewhat_uncomfortable') %} - yellow - {% elif is_state('sensor.utility_room_thermal_comfort_dew_point_perception','quite_uncomfortable') %} - orange - {% elif is_state('sensor.utility_room_thermal_comfort_dew_point_perception','extremely_uncomfortable') %} - orange - {% elif is_state('sensor.utility_room_thermal_comfort_dew_point_perception','severely_high') %} - red - {% endif %} - tap_action: - action: more-info - - type: custom:mushroom-template-card - entity: sensor.utility_room_thermal_comfort_humidex_perception - primary: Humidex - secondary: > - {% if is_state('sensor.utility_room_thermal_comfort_humidex_perception','comfortable') %} - Comfy - {% elif is_state('sensor.utility_room_thermal_comfort_humidex_perception','noticable_discomfort') %} - Noticable Discomfort - {% elif is_state('sensor.utility_room_thermal_comfort_humidex_perception','evident_discomfort') %} - Evident Discomfort - {% elif is_state('sensor.utility_room_thermal_comfort_humidex_perception','great_discomfort') %} - Great Discomfort - {% elif is_state('sensor.utility_room_thermal_comfort_humidex_perception','dangerous_discomfort') %} - Dangerous - {% elif is_state('sensor.utility_room_thermal_comfort_humidex_perception','heat_stroke') %} - Heat Stroke - {% endif %} - icon: tc:thermal-perception - icon_color: > - {% if is_state('sensor.utility_room_thermal_comfort_humidex_perception','comfortable') %} - green - {% elif is_state('sensor.utility_room_thermal_comfort_humidex_perception','noticable_discomfort') %} - yellow - {% elif is_state('sensor.utility_room_thermal_comfort_humidex_perception','evident_discomfort') %} - orange - {% elif is_state('sensor.utility_room_thermal_comfort_humidex_perception','great_discomfort') %} - orange - {% elif is_state('sensor.utility_room_thermal_comfort_humidex_perception','dangerous_discomfort') %} - red - {% elif is_state('sensor.utility_room_thermal_comfort_humidex_perception','heat_stroke') %} - red - {% endif %} - tap_action: - action: more-info - - type: horizontal-stack - cards: - - type: custom:mushroom-template-card - entity: sensor.utility_room_thermal_comfort_summer_simmer_perception - primary: Simmer - secondary: > - {% if is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','cool') %} - Cool - {% elif is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','slightly_cool') %} - Cool - {% elif is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','comfortable') %} - Comfy - {% elif is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','slightly_warm') %} - Warm - {% elif is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','increasing_discomfort') %} - Warm - {% elif is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','extremely_warm') %} - Hot - {% elif is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') %} - Hot - {% elif is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') %} - Danger - {% elif is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') %} - Danger - {% endif %} - icon: tc:simmer-zone - icon_color: > - {% if is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','cool') %} - blue - {% elif is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','slightly_cool') %} - blue - {% elif is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','comfortable') %} - green - {% elif is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','slightly_warm') %} - yellow - {% elif is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','increasing_discomfort') %} - yellow - {% elif is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','extremely_warm') %} - orange - {% elif is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','danger_of_heatstroke') %} - orange - {% elif is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') %} - red - {% elif is_state('sensor.utility_room_thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') %} - red - {% endif %} - tap_action: - action: more-info - - type: custom:mushroom-template-card - entity: sensor.utility_room_thermal_comfort_thoms_discomfort_perception - primary: Thoms - secondary: > - {% if is_state('sensor.utility_room_thermal_comfort_thoms_discomfort_perception','no_discomfort') %} - No discomfort - {% elif is_state('sensor.utility_room_thermal_comfort_thoms_discomfort_perception','less_than_half') %} - Less than half - {% elif is_state('sensor.utility_room_thermal_comfort_thoms_discomfort_perception','more_than_half') %} - More than half - {% elif is_state('sensor.utility_room_thermal_comfort_thoms_discomfort_perception','most') %} - Most - {% elif is_state('sensor.utility_room_thermal_comfort_thoms_discomfort_perception','everyone') %} - Everyone - {% elif is_state('sensor.utility_room_thermal_comfort_thoms_discomfort_perception','dangerous') %} - Dangerous - {% endif %} - icon: tc:heat-index - icon_color: > - {% if is_state('sensor.utility_room_thermal_comfort_thoms_discomfort_perception','no_discomfort') %} - blue - {% elif is_state('sensor.utility_room_thermal_comfort_thoms_discomfort_perception','less_than_half') %} - yellow - {% elif is_state('sensor.utility_room_thermal_comfort_thoms_discomfort_perception','more_than_half') %} - yellow - {% elif is_state('sensor.utility_room_thermal_comfort_thoms_discomfort_perception','most') %} - orange - {% elif is_state('sensor.utility_room_thermal_comfort_thoms_discomfort_perception','everyone') %} - orange - {% elif is_state('sensor.utility_room_thermal_comfort_thoms_discomfort_perception','dangerous') %} - red - {% endif %} - tap_action: - action: more-info - - - type: custom:mini-graph-card - name: Inside - state_map: - - value: "on" - label: Day - - value: "off" - label: Night - - value: above_horizon - label: Day - - value: below_horizon - label: Night - entities: - - entity: sensor.front_room_thermostat_temperature - name: Front Room - - entity: sensor.master_bedroom_multisensor_air_temperature - name: Bedroom - - entity: sensor.nursery_multisensor_air_temperature - name: Nursery - - entity: sensor.kitchen_multisensor_air_temperature - name: Kitchen - - entity: sensor.computer_area_multisensor_air_temperature - name: Computer Area - - entity: sensor.great_room_multisensor_air_temperature - name: Great Room - - color: white - entity: sensor.outdoor_temperature + - type: custom:mini-graph-card + name: Inside + state_map: + - value: "on" + label: Day + - value: "off" + label: Night + - value: above_horizon + label: Day + - value: below_horizon + label: Night + entities: + - entity: sensor.front_room_thermostat_temperature + name: Front Room + - entity: sensor.master_bedroom_multisensor_air_temperature + name: Bedroom + - entity: sensor.nursery_multisensor_air_temperature + name: Nursery + - entity: sensor.kitchen_multisensor_air_temperature + name: Kitchen + - entity: sensor.computer_area_multisensor_air_temperature + name: Computer Area + - entity: sensor.great_room_multisensor_air_temperature + name: Great Room + - color: white + entity: sensor.outdoor_temperature + name: Outside + show_line: false + show_points: false + show_legend: false + - color: black + entity: sensor.sun_elevation + name: Night + show_line: false + show_points: false + show_legend: false + y_axis: secondary + lower_bound: 60 + line_width: 1 + hour24: true + hours_to_show: 24 + points_per_hour: 4 + color_thresholds: + - value: 58 + color: "#260d8f" + - value: 60 + color: "#251ab9" + - value: 62 + color: "#0f28e5" + - value: 64 + color: "#007eff" + - value: 66 + color: "#00aaf9" + - value: 68 + color: "#00cc9e" + - value: 70 + color: "#59E442" + - value: 72 + color: "#59E442" + - value: 74 + color: "#7fd206" + - value: 76 + color: "#97bf00" + - value: 78 + color: "#aaac00" + - value: 80 + color: "#b89700" + - value: 82 + color: "#c18200" + - value: 84 + color: "#c86c00" + - value: 86 + color: "#ca5400" + - value: 88 + color: "#c93905" + - value: 90 + color: "#c4161e" + grid_options: + columns: full + column_span: 5 + - type: grid + cards: + - type: horizontal-stack + cards: + - type: custom:mini-graph-card name: Outside - show_line: false - show_points: false - show_legend: false - - color: black - entity: sensor.sun_elevation - name: Night - show_line: false - show_points: false - show_legend: false - y_axis: secondary - lower_bound: 60 - line_width: 1 - hour24: true - hours_to_show: 24 - points_per_hour: 4 - color_thresholds: - - value: 58 - color: "#260d8f" - - value: 60 - color: "#251ab9" - - value: 62 - color: "#0f28e5" - - value: 64 - color: "#007eff" - - value: 66 - color: "#00aaf9" - - value: 68 - color: "#00cc9e" - - value: 70 - color: "#59E442" - - value: 72 - color: "#59E442" - - value: 74 - color: "#7fd206" - - value: 76 - color: "#97bf00" - - value: 78 - color: "#aaac00" - - value: 80 - color: "#b89700" - - value: 82 - color: "#c18200" - - value: 84 - color: "#c86c00" - - value: 86 - color: "#ca5400" - - value: 88 - color: "#c93905" - - value: 90 - color: "#c4161e" - - - type: custom:mini-graph-card - name: Outside - state_map: - - value: "on" - label: Day - - value: "off" - label: Night - - value: above_horizon - label: Day - - value: below_horizon - label: Night - entities: - - entity: sensor.lacrosse_tx141thbv2_0_temperature - name: Front Yard - - entity: sensor.acurite_592txr_a_temperature - name: Back Yard - - color: white - entity: sensor.outdoor_temperature - name: Outside - show_line: false - show_points: false - show_legend: false - - color: black - entity: sensor.sun_elevation - name: Night - show_line: false - show_points: false - show_legend: false - y_axis: secondary - lower_bound: 60 - line_width: 1 - hour24: true - hours_to_show: 24 - points_per_hour: 4 - color_thresholds: - - value: 58 - color: "#260d8f" - - value: 60 - color: "#251ab9" - - value: 62 - color: "#0f28e5" - - value: 64 - color: "#007eff" - - value: 66 - color: "#00aaf9" - - value: 68 - color: "#00cc9e" - - value: 70 - color: "#59E442" - - value: 72 - color: "#59E442" - - value: 74 - color: "#7fd206" - - value: 76 - color: "#97bf00" - - value: 78 - color: "#aaac00" - - value: 80 - color: "#b89700" - - value: 82 - color: "#c18200" - - value: 84 - color: "#c86c00" - - value: 86 - color: "#ca5400" - - value: 88 - color: "#c93905" - - value: 90 - color: "#c4161e" - - - type: markdown - content: |- - # Sensors: - -
absolute_humidityheat_indexhumidex humidex_perceptiondew_point dew_point_perceptionfrost_pointfrost_riskrelative_strain_perceptionsummer_simmer_index summer_simmer_perceptionmoist_air_enthalpysummer_scharlau_perceptionwinter_scharlau_perceptionthoms_discomfort_perceptionabsolute_humidityheat_indexhumidex humidex_perceptiondew_point dew_point_perceptionfrost_pointfrost_riskrelative_strain_perceptionsummer_simmer_index summer_simmer_perceptionmoist_air_enthalpysummer_scharlau_perceptionwinter_scharlau_perceptionthoms_discomfort_perception