mostly thermal changes

This commit is contained in:
CeeWeasel
2024-07-04 14:46:31 -04:00
parent 458c6121f2
commit dc0b357374
8 changed files with 2131 additions and 244 deletions
+7 -1
View File
@@ -148,7 +148,7 @@ action:
data: data:
option: "Nightlight" option: "Nightlight"
- delay: "00:15:00" - delay: "00:05:00"
- choose: - choose:
- conditions: "{{is_state('input_boolean.emmett_home','on') or is_state('input_boolean.bridget_home','on')}}" - conditions: "{{is_state('input_boolean.emmett_home','on') or is_state('input_boolean.bridget_home','on')}}"
@@ -163,6 +163,12 @@ action:
- choose: - choose:
- conditions: "{{is_state('input_boolean.emmett_home','on') or is_state('input_boolean.bridget_home','on')}}" - conditions: "{{is_state('input_boolean.emmett_home','on') or is_state('input_boolean.bridget_home','on')}}"
sequence: sequence:
- service: media_player.turn_off
target:
entity_id: media_player.ytube_music_player
- delay: "00:00:05"
- service: input_boolean.turn_on - service: input_boolean.turn_on
data: {} data: {}
target: target:
@@ -4,13 +4,6 @@ input_boolean:
name: "Log Pixel 7 Coordinates" name: "Log Pixel 7 Coordinates"
icon: mdi:crosshairs-gps icon: mdi:crosshairs-gps
# Coordinate log configuration
notify:
- name: Pixel 7 Coordinates
platform: file
filename: /config/custom_logs/pixel_7_coordinates.csv
timestamp: false
# Automation to handle the actual logging of coordinates # Automation to handle the actual logging of coordinates
automation: automation:
- alias: "Log Pixel 7 Coordinates" - alias: "Log Pixel 7 Coordinates"
File diff suppressed because it is too large Load Diff
+127
View File
@@ -25,6 +25,133 @@ cards:
detail: 1 detail: 1
entity: sensor.nursery_multisensor_humidity entity: sensor.nursery_multisensor_humidity
name: Humidity name: Humidity
- type: horizontal-stack
cards:
- type: custom:mushroom-template-card
entity: sensor.nursery_thermal_comfort_dew_point_perception
layout: vertical
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
layout: vertical
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: custom:mushroom-template-card
entity: sensor.nursery_thermal_comfort_summer_simmer_perception
layout: vertical
primary: Simmer 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
# Lights # Lights
- type: vertical-stack - type: vertical-stack
+88
View File
@@ -189,6 +189,94 @@ cards:
- state: "unavailable" - state: "unavailable"
class: "transparent" class: "transparent"
- entities:
- sensor.thermal_comfort_dew_point_perception
- sensor.master_bedroom_thermal_comfort_dew_point_perception
- sensor.nursery_thermal_comfort_dew_point_perception
- sensor.great_room_thermal_comfort_dew_point_perception
- sensor.front_room_thermal_comfort_dew_point_perception
- sensor.master_bathroom_thermal_comfort_dew_point_perception
- sensor.computer_area_thermal_comfort_dew_point_perception
- sensor.blue_room_thermal_comfort_dew_point_perception
- sensor.utility_room_thermal_comfort_dew_point_perception
states:
- state: "dry"
class: "green-to-red-grad-2"
- state: "very_comfortable"
class: "green-to-red-grad-4"
- state: "comfortable"
class: "green-to-red-grad-6"
- state: "ok_but_humid"
class: "green-to-red-grad-8"
- state: "somewhat_uncomfortable"
class: "green-to-red-grad-10"
- state: "quite_uncomfortable"
class: "green-to-red-grad-14"
- state: "extremely_uncomfortable"
class: "green-to-red-grad-16"
- state: "severely_high"
class: "green-to-red-grad-18"
- state: "unavailable"
class: "dew-point-unavailable"
- entities:
- sensor.thermal_comfort_humidex_perception
- sensor.master_bedroom_thermal_comfort_humidex_perception
- sensor.nursery_thermal_comfort_humidex_perception
- sensor.great_room_thermal_comfort_humidex_perception
- sensor.front_room_thermal_comfort_humidex_perception
- sensor.master_bathroom_thermal_comfort_humidex_perception
- sensor.computer_area_thermal_comfort_humidex_perception
- sensor.blue_room_thermal_comfort_humidex_perception
- sensor.utility_room_thermal_comfort_humidex_perception
states:
- state: "comfortable"
class: "green-to-red-grad-3"
- state: "noticable_discomfort"
class: "green-to-red-grad-6"
- state: "evident_discomfort"
class: "green-to-red-grad-9"
- state: "great_discomfort"
class: "green-to-red-grad-12"
- state: "dangerous_discomfort"
class: "green-to-red-grad-15"
- state: "heat_stroke"
class: "green-to-red-grad-18"
- state: "unavailable"
class: "humidex-unavailable"
- entities:
- sensor.thermal_comfort_summer_simmer_perception
- sensor.master_bedroom_thermal_comfort_summer_simmer_perception
- sensor.nursery_thermal_comfort_summer_simmer_perception
- sensor.great_room_thermal_comfort_summer_simmer_perception
- sensor.front_room_thermal_comfort_summer_simmer_perception
- sensor.master_bathroom_thermal_comfort_summer_simmer_perception
- sensor.computer_area_thermal_comfort_summer_simmer_perception
- sensor.blue_room_thermal_comfort_summer_simmer_perception
- sensor.utility_room_thermal_comfort_summer_simmer_perception
states:
- state: "unavailable"
class: "summer-simmer-unavailable"
- state: "cool"
class: "green-to-red-grad-2"
- state: "slightly_cool"
class: "green-to-red-grad-4"
- state: "comfortable"
class: "green-to-red-grad-6"
- state: "slightly_warm"
class: "green-to-red-grad-8"
- state: "increasing_discomfort"
class: "green-to-red-grad-10"
- state: "extremely_warm"
class: "green-to-red-grad-12"
- state: "danger_of_heatstroke"
class: "green-to-red-grad-14"
- state: "extreme_danger_of_heatstroke"
class: "green-to-red-grad-16"
- state: "circulatory_collapse_imminent"
class: "green-to-red-grad-18"
- entities: - entities:
- input_boolean.clint_home - input_boolean.clint_home
- group.phone_clint - group.phone_clint
+126 -136
View File
@@ -23,43 +23,26 @@ badges:
chip: chip:
type: template type: template
entity: sensor.thermal_comfort_dew_point_perception entity: sensor.thermal_comfort_dew_point_perception
content: > content: Dew Point
{% if is_state('sensor.thermal_comfort_dew_point_perception','dry') %} # content: >
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: >
# {% if is_state('sensor.thermal_comfort_dew_point_perception','dry') %} # {% if is_state('sensor.thermal_comfort_dew_point_perception','dry') %}
# mdi:water-outline # Dry
# {% elif is_state('sensor.thermal_comfort_dew_point_perception','very_comfortable') %} # {% elif is_state('sensor.thermal_comfort_dew_point_perception','very_comfortable') %}
# mdi:water # Very Comfy
# {% elif is_state('sensor.thermal_comfort_dew_point_perception','comfortable') %} # {% elif is_state('sensor.thermal_comfort_dew_point_perception','comfortable') %}
# mdi:water # Comfy
# {% elif is_state('sensor.thermal_comfort_dew_point_perception','ok_but_humid') %} # {% elif is_state('sensor.thermal_comfort_dew_point_perception','ok_but_humid') %}
# mdi:water-plus # Humid
# {% elif is_state('sensor.thermal_comfort_dew_point_perception','somewhat_uncomfortable') %} # {% elif is_state('sensor.thermal_comfort_dew_point_perception','somewhat_uncomfortable') %}
# mdi:water-percent # Somewhat Uncomfy
# {% elif is_state('sensor.thermal_comfort_dew_point_perception','quite_uncomfortable') %} # {% elif is_state('sensor.thermal_comfort_dew_point_perception','quite_uncomfortable') %}
# mdi:water-percent # Quite Uncomfy
# {% elif is_state('sensor.thermal_comfort_dew_point_perception','extremely_uncomfortable') %} # {% elif is_state('sensor.thermal_comfort_dew_point_perception','extremely_uncomfortable') %}
# mdi:water-percent-alert # Extremely Uncomfy
# {% elif is_state('sensor.thermal_comfort_dew_point_perception','severely_high') %} # {% elif is_state('sensor.thermal_comfort_dew_point_perception','severely_high') %}
# mdi:water-percent-alert # Severely High
# {% endif %} # {% endif %}
icon: tc:dew-point
icon_color: > icon_color: >
{% if is_state('sensor.thermal_comfort_dew_point_perception','dry') %} {% if is_state('sensor.thermal_comfort_dew_point_perception','dry') %}
gray gray
@@ -89,20 +72,21 @@ badges:
chip: chip:
type: template type: template
entity: sensor.thermal_comfort_humidex_perception entity: sensor.thermal_comfort_humidex_perception
content: > content: Humidex
{% if is_state('sensor.thermal_comfort_humidex_perception','comfortable') %} # content: >
Comfy # {% if is_state('sensor.thermal_comfort_humidex_perception','comfortable') %}
{% elif is_state('sensor.thermal_comfort_humidex_perception','noticable_discomfort') %} # Comfy
Noticable Discomfort # {% elif is_state('sensor.thermal_comfort_humidex_perception','noticable_discomfort') %}
{% elif is_state('sensor.thermal_comfort_humidex_perception','evident_discomfort') %} # Noticable Discomfort
Evident Discomfort # {% elif is_state('sensor.thermal_comfort_humidex_perception','evident_discomfort') %}
{% elif is_state('sensor.thermal_comfort_humidex_perception','great_discomfort') %} # Evident Discomfort
Great Discomfort # {% elif is_state('sensor.thermal_comfort_humidex_perception','great_discomfort') %}
{% elif is_state('sensor.thermal_comfort_humidex_perception','dangerous_discomfort') %} # Great Discomfort
Dangerous # {% elif is_state('sensor.thermal_comfort_humidex_perception','dangerous_discomfort') %}
{% elif is_state('sensor.thermal_comfort_humidex_perception','heat_stroke') %} # Dangerous
Heat Stroke # {% elif is_state('sensor.thermal_comfort_humidex_perception','heat_stroke') %}
{% endif %} # Heat Stroke
# {% endif %}
icon: tc:thermal-perception icon: tc:thermal-perception
# icon: > # icon: >
# {% if is_state('sensor.thermal_comfort_humidex_perception','comfortable') %} # {% if is_state('sensor.thermal_comfort_humidex_perception','comfortable') %}
@@ -145,16 +129,17 @@ badges:
chip: chip:
type: template type: template
entity: sensor.thermal_comfort_summer_scharlau_perception entity: sensor.thermal_comfort_summer_scharlau_perception
content: > content: Summer Scharlau
{% if is_state('sensor.thermal_comfort_summer_scharlau_perception','comfortable') %} # content: >
Comfy # {% if is_state('sensor.thermal_comfort_summer_scharlau_perception','comfortable') %}
{% elif is_state('sensor.thermal_comfort_summer_scharlau_perception','slightly_uncomfortable') %} # Comfy
Slightly Uncomfy # {% elif is_state('sensor.thermal_comfort_summer_scharlau_perception','slightly_uncomfortable') %}
{% elif is_state('sensor.thermal_comfort_summer_scharlau_perception','moderatly_uncomfortable') %} # Slightly Uncomfy
Moderatly Uncomfy # {% elif is_state('sensor.thermal_comfort_summer_scharlau_perception','moderatly_uncomfortable') %}
{% elif is_state('sensor.thermal_comfort_summer_scharlau_perception','highly_uncomfortable') %} # Moderatly Uncomfy
Highly Uncomfortable # {% elif is_state('sensor.thermal_comfort_summer_scharlau_perception','highly_uncomfortable') %}
{% endif %} # Highly Uncomfortable
# {% endif %}
icon: > icon: >
{% if is_state('sensor.thermal_comfort_summer_scharlau_perception','comfortable') %} {% if is_state('sensor.thermal_comfort_summer_scharlau_perception','comfortable') %}
mdi:thermometer-low mdi:thermometer-low
@@ -188,16 +173,17 @@ badges:
chip: chip:
type: template type: template
entity: sensor.thermal_comfort_winter_scharlau_perception entity: sensor.thermal_comfort_winter_scharlau_perception
content: > content: Winter Scharlau
{% if is_state('sensor.thermal_comfort_winter_scharlau_perception','comfortable') %} # content: >
Comfy # {% if is_state('sensor.thermal_comfort_winter_scharlau_perception','comfortable') %}
{% elif is_state('sensor.thermal_comfort_winter_scharlau_perception','slightly_uncomfortable') %} # Comfy
Slightly Uncomfy # {% elif is_state('sensor.thermal_comfort_winter_scharlau_perception','slightly_uncomfortable') %}
{% elif is_state('sensor.thermal_comfort_winter_scharlau_perception','moderatly_uncomfortable') %} # Slightly Uncomfy
Moderatly Uncomfy # {% elif is_state('sensor.thermal_comfort_winter_scharlau_perception','moderatly_uncomfortable') %}
{% elif is_state('sensor.thermal_comfort_winter_scharlau_perception','highly_uncomfortable') %} # Moderatly Uncomfy
Highly Uncomfortable # {% elif is_state('sensor.thermal_comfort_winter_scharlau_perception','highly_uncomfortable') %}
{% endif %} # Highly Uncomfortable
# {% endif %}
icon: > icon: >
{% if is_state('sensor.thermal_comfort_winter_scharlau_perception','comfortable') %} {% if is_state('sensor.thermal_comfort_winter_scharlau_perception','comfortable') %}
mdi:snowflake-off mdi:snowflake-off
@@ -272,26 +258,27 @@ badges:
chip: chip:
type: template type: template
entity: sensor.thermal_comfort_summer_simmer_perception entity: sensor.thermal_comfort_summer_simmer_perception
content: > content: Summer Simmer
{% if is_state('sensor.thermal_comfort_summer_simmer_perception','cool') %} # content: >
Cool # {% if is_state('sensor.thermal_comfort_summer_simmer_perception','cool') %}
{% elif is_state('sensor.thermal_comfort_summer_simmer_perception','slightly_cool') %} # Cool
Cool # {% elif is_state('sensor.thermal_comfort_summer_simmer_perception','slightly_cool') %}
{% elif is_state('sensor.thermal_comfort_summer_simmer_perception','comfortable') %} # Cool
Comfy # {% elif is_state('sensor.thermal_comfort_summer_simmer_perception','comfortable') %}
{% elif is_state('sensor.thermal_comfort_summer_simmer_perception','slightly_warm') %} # Comfy
Warm # {% elif is_state('sensor.thermal_comfort_summer_simmer_perception','slightly_warm') %}
{% elif is_state('sensor.thermal_comfort_summer_simmer_perception','increasing_discomfort') %} # Warm
Warm # {% elif is_state('sensor.thermal_comfort_summer_simmer_perception','increasing_discomfort') %}
{% elif is_state('sensor.thermal_comfort_summer_simmer_perception','extremely_warm') %} # Warm
Hot # {% elif is_state('sensor.thermal_comfort_summer_simmer_perception','extremely_warm') %}
{% elif is_state('sensor.thermal_comfort_summer_simmer_perception','danger_of_heatstroke') %} # Hot
Hot # {% elif is_state('sensor.thermal_comfort_summer_simmer_perception','danger_of_heatstroke') %}
{% elif is_state('sensor.thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') %} # Hot
Danger # {% elif is_state('sensor.thermal_comfort_summer_simmer_perception','extreme_danger_of_heatstroke') %}
{% elif is_state('sensor.thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') %} # Danger
Danger # {% elif is_state('sensor.thermal_comfort_summer_simmer_perception','circulatory_collapse_imminent') %}
{% endif %} # Danger
# {% endif %}
icon: tc:simmer-zone icon: tc:simmer-zone
# icon: > # icon: >
# {% if is_state('sensor.thermal_comfort_summer_simmer_perception','cool') %} # {% if is_state('sensor.thermal_comfort_summer_simmer_perception','cool') %}
@@ -344,26 +331,27 @@ badges:
chip: chip:
type: template type: template
entity: sensor.thermal_comfort_thoms_discomfort_perception entity: sensor.thermal_comfort_thoms_discomfort_perception
content: > content: Thoms
{% if is_state('sensor.thermal_comfort_thoms_discomfort_perception','no_discomfort') %} # content: >
Comfy # {% if is_state('sensor.thermal_comfort_thoms_discomfort_perception','no_discomfort') %}
{% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','less_then_half') %} # Comfy
< 1/2 # {% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','less_than_half') %}
{% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','more_then_half') %} # < 1/2
> 1/2 # {% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','more_than_half') %}
{% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','most') %} # > 1/2
Most # {% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','most') %}
{% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','everyone') %} # Most
Everyone # {% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','everyone') %}
{% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','dangerous') %} # Everyone
Dangerous # {% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','dangerous') %}
{% endif %} # Dangerous
# {% endif %}
icon: > icon: >
{% if is_state('sensor.thermal_comfort_thoms_discomfort_perception','no_discomfort') %} {% if is_state('sensor.thermal_comfort_thoms_discomfort_perception','no_discomfort') %}
mdi:thermometer-low mdi:thermometer-low
{% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','less_then_half') %} {% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','less_than_half') %}
mdi:thermometer mdi:thermometer
{% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','more_then_half') %} {% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','more_than_half') %}
mdi:thermometer mdi:thermometer
{% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','most') %} {% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','most') %}
mdi:thermometer-high mdi:thermometer-high
@@ -375,9 +363,9 @@ badges:
icon_color: > icon_color: >
{% if is_state('sensor.thermal_comfort_thoms_discomfort_perception','no_discomfort') %} {% if is_state('sensor.thermal_comfort_thoms_discomfort_perception','no_discomfort') %}
green green
{% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','less_then_half') %} {% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','less_than_half') %}
yellow yellow
{% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','more_then_half') %} {% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','more_than_half') %}
yellow yellow
{% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','most') %} {% elif is_state('sensor.thermal_comfort_thoms_discomfort_perception','most') %}
orange orange
@@ -403,7 +391,7 @@ badges:
- type: conditional - type: conditional
conditions: conditions:
- entity: binary_sensor.theater_mode_at_home - entity: binary_sensor.theater_mode_at_home
state: 'on' state: "on"
chip: chip:
type: template type: template
entity: binary_sensor.theater_mode_at_home entity: binary_sensor.theater_mode_at_home
@@ -417,7 +405,7 @@ badges:
- type: conditional - type: conditional
conditions: conditions:
- entity: binary_sensor.dnd_at_home - entity: binary_sensor.dnd_at_home
state: 'on' state: "on"
chip: chip:
type: template type: template
entity: binary_sensor.dnd_at_home entity: binary_sensor.dnd_at_home
@@ -446,7 +434,7 @@ badges:
- type: conditional - type: conditional
conditions: conditions:
- entity: binary_sensor.sprinkler_in_season - entity: binary_sensor.sprinkler_in_season
state: 'on' state: "on"
chip: chip:
type: entity type: entity
entity: sensor.sprinkler_current_status entity: sensor.sprinkler_current_status
@@ -457,7 +445,7 @@ badges:
- type: conditional - type: conditional
conditions: conditions:
- entity: binary_sensor.sprinkler_should_winterize - entity: binary_sensor.sprinkler_should_winterize
state: 'on' state: "on"
chip: chip:
type: entity type: entity
entity: binary_sensor.sprinkler_should_winterize entity: binary_sensor.sprinkler_should_winterize
@@ -469,7 +457,7 @@ badges:
- type: conditional - type: conditional
conditions: conditions:
- entity: binary_sensor.sprinkler_should_dewinterize - entity: binary_sensor.sprinkler_should_dewinterize
state: 'on' state: "on"
chip: chip:
type: entity type: entity
entity: binary_sensor.sprinkler_should_dewinterize entity: binary_sensor.sprinkler_should_dewinterize
@@ -483,7 +471,7 @@ badges:
- entity: sensor.chickadee_unread - entity: sensor.chickadee_unread
state_not: unavailable state_not: unavailable
- entity: sensor.chickadee_unread - entity: sensor.chickadee_unread
state_not: '0' state_not: "0"
chip: chip:
type: entity type: entity
entity: sensor.chickadee_unread entity: sensor.chickadee_unread
@@ -493,7 +481,7 @@ badges:
- entity: sensor.watchman_missing_entities - entity: sensor.watchman_missing_entities
state_not: unavailable state_not: unavailable
- entity: sensor.watchman_missing_entities - entity: sensor.watchman_missing_entities
state_not: '0' state_not: "0"
chip: chip:
type: entity type: entity
entity: sensor.watchman_missing_entities entity: sensor.watchman_missing_entities
@@ -506,7 +494,7 @@ badges:
- entity: sensor.watchman_missing_services - entity: sensor.watchman_missing_services
state_not: unavailable state_not: unavailable
- entity: sensor.watchman_missing_services - entity: sensor.watchman_missing_services
state_not: '0' state_not: "0"
chip: chip:
type: entity type: entity
entity: sensor.watchman_missing_services entity: sensor.watchman_missing_services
@@ -519,7 +507,7 @@ badges:
- entity: sensor.open_windows_count - entity: sensor.open_windows_count
state_not: unavailable state_not: unavailable
- entity: sensor.open_windows_count - entity: sensor.open_windows_count
state_not: '0' state_not: "0"
chip: chip:
type: template type: template
entity: group.my_exterior_windows entity: group.my_exterior_windows
@@ -533,11 +521,11 @@ badges:
- entity: sensor.open_external_doors_count - entity: sensor.open_external_doors_count
state_not: unavailable state_not: unavailable
- entity: sensor.open_external_doors_count - entity: sensor.open_external_doors_count
state_not: '0' state_not: "0"
chip: chip:
type: template type: template
entity: group.my_exterior_doors entity: group.my_exterior_doors
icon: > icon: >
{% if is_state('binary_sensor.patio_door_contact','on')-%} {% if is_state('binary_sensor.patio_door_contact','on')-%}
mdi:door-sliding-open mdi:door-sliding-open
{% elif is_state('binary_sensor.garage_door','on')-%} {% elif is_state('binary_sensor.garage_door','on')-%}
@@ -554,7 +542,7 @@ badges:
- entity: sensor.lights_left_on_count - entity: sensor.lights_left_on_count
state_not: unavailable state_not: unavailable
- entity: sensor.lights_left_on_count - entity: sensor.lights_left_on_count
state_not: '0' state_not: "0"
chip: chip:
type: template type: template
entity: group.lights_left_on entity: group.lights_left_on
@@ -579,7 +567,7 @@ badges:
- type: conditional - type: conditional
conditions: conditions:
- entity: binary_sensor.need_salt - entity: binary_sensor.need_salt
state: 'on' state: "on"
chip: chip:
type: entity type: entity
entity: binary_sensor.need_salt entity: binary_sensor.need_salt
@@ -590,7 +578,7 @@ badges:
- type: conditional - type: conditional
conditions: conditions:
- entity: input_boolean.clint_needs_am_meds - entity: input_boolean.clint_needs_am_meds
state: 'on' state: "on"
chip: chip:
type: entity type: entity
entity: input_boolean.clint_needs_am_meds entity: input_boolean.clint_needs_am_meds
@@ -602,7 +590,7 @@ badges:
- type: conditional - type: conditional
conditions: conditions:
- entity: input_boolean.clint_needs_pm_meds - entity: input_boolean.clint_needs_pm_meds
state: 'on' state: "on"
chip: chip:
type: entity type: entity
entity: input_boolean.clint_needs_pm_meds entity: input_boolean.clint_needs_pm_meds
@@ -614,11 +602,11 @@ badges:
- type: conditional - type: conditional
conditions: conditions:
- entity: sensor.dishwasher - entity: sensor.dishwasher
state_not: 'idle' state_not: "idle"
chip: chip:
type: template type: template
entity: input_boolean.empty_dishwasher entity: input_boolean.empty_dishwasher
icon: > icon: >
{% if is_state('sensor.dishwasher','running')-%} {% if is_state('sensor.dishwasher','running')-%}
mdi:dishwasher mdi:dishwasher
{% elif is_state('sensor.dishwasher','pending')-%} {% elif is_state('sensor.dishwasher','pending')-%}
@@ -639,11 +627,11 @@ badges:
- type: conditional - type: conditional
conditions: conditions:
- entity: sensor.washing_machine - entity: sensor.washing_machine
state_not: 'idle' state_not: "idle"
chip: chip:
type: template type: template
entity: input_boolean.swap_laundry entity: input_boolean.swap_laundry
icon: > icon: >
{% if is_state('sensor.washing_machine','running')-%} {% if is_state('sensor.washing_machine','running')-%}
mdi:washing-machine mdi:washing-machine
{% elif is_state('sensor.washing_machine','pending')-%} {% elif is_state('sensor.washing_machine','pending')-%}
@@ -664,11 +652,11 @@ badges:
- type: conditional - type: conditional
conditions: conditions:
- entity: sensor.tumble_dryer - entity: sensor.tumble_dryer
state_not: 'idle' state_not: "idle"
chip: chip:
type: template type: template
entity: input_boolean.fold_clothes entity: input_boolean.fold_clothes
icon: > icon: >
{% if is_state('sensor.tumble_dryer','running')-%} {% if is_state('sensor.tumble_dryer','running')-%}
mdi:tumble-dryer mdi:tumble-dryer
{% elif is_state('sensor.tumble_dryer','pending')-%} {% elif is_state('sensor.tumble_dryer','pending')-%}
@@ -695,7 +683,7 @@ badges:
- type: conditional - type: conditional
conditions: conditions:
- entity: binary_sensor.kids_possible - entity: binary_sensor.kids_possible
state: 'on' state: "on"
chip: chip:
type: entity type: entity
entity: input_text.person_emmett entity: input_text.person_emmett
@@ -703,7 +691,7 @@ badges:
- type: conditional - type: conditional
conditions: conditions:
- entity: binary_sensor.kids_possible - entity: binary_sensor.kids_possible
state: 'on' state: "on"
chip: chip:
type: entity type: entity
entity: input_text.person_bridget entity: input_text.person_bridget
@@ -711,9 +699,9 @@ badges:
- type: conditional - type: conditional
conditions: conditions:
- entity: binary_sensor.kids_possible - entity: binary_sensor.kids_possible
state: 'on' state: "on"
- entity: person.ebin - entity: person.ebin
state: 'home' state: "home"
chip: chip:
type: entity type: entity
entity: input_text.person_ebin entity: input_text.person_ebin
@@ -721,7 +709,7 @@ badges:
- type: conditional - type: conditional
conditions: conditions:
- entity: binary_sensor.kids_possible - entity: binary_sensor.kids_possible
state: 'on' state: "on"
chip: chip:
type: entity type: entity
entity: input_datetime.kids_bedtime_announcement_time entity: input_datetime.kids_bedtime_announcement_time
@@ -753,26 +741,29 @@ badges:
- type: entity-filter - type: entity-filter
entities: entities:
- entity: sensor.nursery_thermal_comfort_dew_point_perception - entity: sensor.nursery_thermal_comfort_humidex_perception
name: Nursery name: Nursery
icon: tc:thermal-perception
tap_action: tap_action:
action: navigate action: navigate
navigation_path: /details-yml/hvac navigation_path: /details-yml/hvac
- entity: sensor.master_bedroom_thermal_comfort_dew_point_perception - entity: sensor.master_bedroom_thermal_comfort_humidex_perception
name: Bedroom name: Bedroom
icon: tc:thermal-perception
tap_action: tap_action:
action: navigate action: navigate
navigation_path: /details-yml/hvac navigation_path: /details-yml/hvac
- entity: sensor.great_room_thermal_comfort_dew_point_perception - entity: sensor.great_room_thermal_comfort_humidex_perception
name: Great Room name: Great Room
icon: tc:thermal-perception
tap_action: tap_action:
action: navigate action: navigate
navigation_path: /details-yml/hvac navigation_path: /details-yml/hvac
state_filter: state_filter:
- "somewhat_uncomfortable" - "noticable_discomfort"
- "quite_uncomfortable" - "evident_discomfort"
- "extremely_uncomfortable" - "great_discomfort"
- "severely_high" - "dangerous_discomfort"
# - type: entity-filter # - type: entity-filter
# entities: # entities:
@@ -1466,7 +1457,7 @@ cards:
- binary_sensor.kids_possible - binary_sensor.kids_possible
show_empty: false show_empty: false
state_filter: state_filter:
- 'on' - "on"
card: card:
type: vertical-stack type: vertical-stack
cards: cards:
@@ -1506,7 +1497,7 @@ cards:
- binary_sensor.check_mail - binary_sensor.check_mail
show_empty: false show_empty: false
state_filter: state_filter:
- 'on' - "on"
card: card:
type: custom:mail-and-packages-card type: custom:mail-and-packages-card
name: Mail Summary name: Mail Summary
@@ -1534,7 +1525,6 @@ cards:
weather_icon_type: fill weather_icon_type: fill
time_format: 12 time_format: 12
date_pattern: DDDD date_pattern: DDDD
# - type: entity-filter # - type: entity-filter
# card: # card:
# type: glance # type: glance
+81 -1
View File
@@ -58,10 +58,12 @@ svg * {
.room-empty { .room-empty {
/*fill: #5d5b5b !important;*/ /*fill: #5d5b5b !important;*/
fill: #888888 !important; fill: #888888 !important;
fill-opacity: 1 !important;
} }
.room-occupied { .room-occupied {
fill: #596170 !important; fill: #596170 !important;
fill-opacity: 1 !important;
/* fill: #5d5d6f !important;*/ /* fill: #5d5d6f !important;*/
} }
@@ -768,4 +770,82 @@ svg * {
.cam14-preset-7 { .cam14-preset-7 {
/* transform: rotate(-12.13251, 954.42304, 540.7003); */ /* transform: rotate(-12.13251, 954.42304, 540.7003); */
transform: rotate(-12.13251deg); transform: rotate(-12.13251deg);
} }
.green-to-red-grad-1{
fill: #00ff00 !important;
}
.green-to-red-grad-2{
fill: #4ef600 !important;
}
.green-to-red-grad-3{
fill: #6eed00 !important;
}
.green-to-red-grad-4 {
fill: #87e300 !important;
}
.green-to-red-grad-5 {
fill: #99d900 !important;
}
.green-to-red-grad-6 {
fill: #a8cf00 !important;
}
.green-to-red-grad-7 {
fill: #b4c500 !important;
}
.green-to-red-grad-8 {
fill: #bfba00 !important;
}
.green-to-red-grad-9 {
fill: #caaf00 !important;
}
.green-to-red-grad-10 {
fill: #d3a400 !important;
}
.green-to-red-grad-11 {
fill: #dc9800 !important;
}
.green-to-red-grad-12 {
fill: #e48b00 !important;
}
.green-to-red-grad-13 {
fill: #eb7d00 !important;
}
.green-to-red-grad-14 {
fill: #f26d00 !important;
}
.green-to-red-grad-15 {
fill: #f85c00 !important;
}
.green-to-red-grad-16 {
fill: #fb4900 !important;
}
.green-to-red-grad-17 {
fill: #fe3100 !important;
}
.green-to-red-grad-18 {
fill: #ff0000 !important;
}
.humidex-unavailable{
visibility: hidden !important;
}
+193 -6
View File
@@ -39,10 +39,10 @@
inkscape:pageopacity="0.0" inkscape:pageopacity="0.0"
inkscape:pageshadow="2" inkscape:pageshadow="2"
inkscape:zoom="0.014142136" inkscape:zoom="0.014142136"
inkscape:cx="57699.913" inkscape:cx="64417.426"
inkscape:cy="32915.821" inkscape:cy="22945.614"
inkscape:document-units="px" inkscape:document-units="px"
inkscape:current-layer="layer1" inkscape:current-layer="thermal-comfort-group-template-5-01"
showgrid="true" showgrid="true"
units="in" units="in"
inkscape:pagecheckerboard="false" inkscape:pagecheckerboard="false"
@@ -124,12 +124,19 @@
inkscape:groupmode="layer" inkscape:groupmode="layer"
id="layer1" id="layer1"
transform="translate(0,17815)"><rect transform="translate(0,17815)"><rect
style="display:inline;opacity:1;fill:#1c2316;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.321043;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" style="display:inline;opacity:1;fill:#1c2316;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.174176;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect5100-9-3-2-5-8" id="rect5100-9-3-2-5-8"
width="885.66669" width="260.68741"
height="153.57216" height="153.57216"
x="43.625" x="43.625"
y="-17425.125" /> y="-17425.125" />
<rect
style="display:inline;fill:#1c2316;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.110483;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect5100-9-3-2-5-8-4"
width="624.90057"
height="25.777346"
x="304.25485"
y="-17297.33" />
<rect <rect
y="-17797" y="-17797"
x="766" x="766"
@@ -3857,7 +3864,7 @@
d="m 720.0222,-17679.003 a 4.5,4.5 0 0 1 4.99225,3.941 4.5,4.5 0 0 1 -3.93422,4.997 4.5,4.5 0 0 1 -5.00204,-3.928 4.5,4.5 0 0 1 3.92178,-5.007" d="m 720.0222,-17679.003 a 4.5,4.5 0 0 1 4.99225,3.941 4.5,4.5 0 0 1 -3.93422,4.997 4.5,4.5 0 0 1 -5.00204,-3.928 4.5,4.5 0 0 1 3.92178,-5.007"
inkscape:label="light.storage_room" inkscape:label="light.storage_room"
sodipodi:arc-type="arc" /> sodipodi:arc-type="arc" />
&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10; inkscape:label=&quot;light.front_porch_overhead&quot; /&gt;&#10; <rect &#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10;&#10; inkscape:label=&quot;light.front_porch_overhead&quot; /&gt;&#10; <rect
id="rect12-8-8-9-3-20-4-5-3" id="rect12-8-8-9-3-20-4-5-3"
width="43.5" width="43.5"
height="4.5" height="4.5"
@@ -5929,5 +5936,185 @@
style="fill:#8270a2;fill-opacity:1;stroke:none" /> style="fill:#8270a2;fill-opacity:1;stroke:none" />
</svg> </svg>
</g> </g>
<g
id="thermal-comfort-group-template-5"
inkscape:label="thermal-comfort-group-master-bedroom"
transform="matrix(0.52345088,0,0,0.52345088,-85.432892,-8194.1962)">
<path
d="m 808.66443,-17670.656 c -1.47187,0 -2.66,1.189 -2.66,2.66 v 7.092 c -1.95953,1.472 -2.35853,4.247 -0.88666,6.207 1.47186,1.959 4.24712,2.358 6.20665,0.886 1.95953,-1.472 2.35853,-4.247 0.88667,-6.206 -0.24827,-0.337 -0.54974,-0.639 -0.88667,-0.887 v -7.092 c 0,-1.471 -1.18813,-2.66 -2.65999,-2.66 z m 0,1.774 c 0.48766,0 0.88666,0.399 0.88666,0.886 v 2.66 h -1.77333 v -2.66 c 0,-0.487 0.399,-0.886 0.88667,-0.886 z m 7.53492,2.66 c 0,0 -2.78988,3.141 -3.07735,5.23 0.0544,0.06 0.10688,0.116 0.15412,0.18 0.60212,0.802 0.96042,1.715 1.08929,2.648 0.51425,0.379 1.14708,0.606 1.83394,0.606 v -1.036 h 1.03386 v -1.034 h -1.03386 v -1.034 h 1.03386 v -1.035 h -1.03386 v -1.034 h 1.03386 v -1.034 h -1.03386 v -1.036 h 1.03386 v -0.138 c -0.56894,-0.76 -1.03386,-1.283 -1.03386,-1.283 z m 1.03386,1.421 v 1.036 h 0.8174 c -0.23792,-0.367 -0.48074,-0.72 -0.71349,-1.036 z m 0,2.07 v 1.034 h 1.0356 v -1.034 z m 1.0356,0 h 0.38272 c -0.12413,-0.228 -0.24824,-0.46 -0.38272,-0.682 z m 0,1.034 v 1.035 h 1.03387 c 0,-0.315 -0.0767,-0.668 -0.20089,-1.035 z m 0,1.035 h -1.0356 v 1.034 h 1.0356 z m 0,1.034 v 1.034 h 0.23725 c 0.2793,-0.3 0.4803,-0.646 0.61478,-1.034 z m 0,1.034 h -1.0356 v 0.854 c 0.38792,-0.135 0.73561,-0.336 1.0356,-0.615 z"
id="sensor.master_bedroom_thermal_comfort_dew_point_perception"
style="stroke-width:0.886665"
inkscape:label="sensor.master_bedroom_thermal_comfort_dew_point_perception" />
<path
d="m 813.35885,-17651.599 -5.27488,4.351 -1.41003,5.635 6.21799,3.59 0.77667,-1.348 1.04249,-6.095 c 0.0647,-0.442 -0.0915,-0.769 -0.46461,-0.985 -0.2165,-0.125 -0.44875,-0.156 -0.70039,-0.09 -0.25166,0.06 -0.45349,0.212 -0.601,0.446 l -1.11646,1.935 -0.23577,1.474 -0.7813,-0.148 0.32593,-1.726 2.79231,-4.836 c 0.22871,-0.396 0.2859,-0.812 0.16643,-1.244 -0.11945,-0.431 -0.36621,-0.748 -0.73738,-0.957 z m 3.73311,0 c -0.4909,0 -0.94011,0.167 -1.29908,0.442 0.004,0.01 0.01,0.03 0.0139,0.04 0.23573,0.851 0.0938,1.854 -0.33979,2.605 l -0.31437,0.543 c 0.85162,0.508 1.45572,1.798 1.31526,2.758 l -0.005,0.02 -1.09797,6.431 -0.84833,1.468 -0.39758,0.691 c 0.62524,0.956 1.7044,1.569 2.97261,1.569 0.0629,0 0.12532,0 0.18723,0 1.9194,-0.09 3.36326,-1.597 3.36326,-3.546 0,-1.184 -0.59082,-2.249 -1.41927,-2.841 v -8.046 c 0,-1.184 -0.94772,-2.132 -2.13122,-2.132 z m 0,1.184 c 0.4734,0 0.94772,0.356 0.94772,0.948 v 1.419 h -1.77525 v -1.419 h -0.12019 c 0,-0.04 0.003,-0.07 0.007,-0.109 0.0536,-0.527 0.49697,-0.839 0.94078,-0.839 z m -12.60009,9.387 -1.60188,2.774 7.60027,4.387 1.60188,-2.774 z"
id="sensor.master_bedroom_thermal_comfort_humidex_perception"
style="stroke-width:1.1835"
inkscape:label="sensor.master_bedroom_thermal_comfort_humidex_perception" />
<path
d="m 808.21962,-17632.547 c -1.47231,0 -2.66106,1.188 -2.66106,2.661 v 7.094 c -1.96013,1.473 -2.35933,4.249 -0.88702,6.209 1.47231,1.96 4.24901,2.36 6.20914,0.887 1.96012,-1.472 2.35933,-4.249 0.88702,-6.209 -0.24835,-0.337 -0.54999,-0.638 -0.88702,-0.887 v -7.094 c 0,-1.473 -1.18875,-2.661 -2.66106,-2.661 z m 0,1.774 c 0.48781,0 0.88702,0.399 0.88702,0.887 v 2.661 h -1.77404 v -2.661 c 0,-0.488 0.39921,-0.887 0.88702,-0.887 z m 7.73197,1.774 c -1.15563,0.102 -2.22519,0.636 -3.00409,1.491 -0.30514,0.339 -0.54987,0.709 -0.73629,1.101 v 3.087 c 0.20993,0.205 0.44696,0.383 0.62195,0.62 0.47942,0.639 0.8028,1.349 0.98057,2.082 1.86663,1.244 4.39561,0.962 5.93541,-0.745 h -0.37248 c -1.13017,0 -2.22451,-0.412 -3.05433,-1.165 -1.89889,-1.691 -2.05582,-4.588 -0.37074,-6.471 z"
id="sensor.master_bedroom_thermal_comfort_summer_simmer_perception"
style="stroke-width:0.887023"
inkscape:label="sensor.master_bedroom_thermal_comfort_summer_simmer_perception" />
</g>
<g
id="thermal-comfort-group-template-5-9"
inkscape:label="thermal-comfort-group-outside"
transform="matrix(0.52345088,0,0,0.52345088,-150.91931,-8106.2798)">
<path
d="m 808.66443,-17670.656 c -1.47187,0 -2.66,1.189 -2.66,2.66 v 7.092 c -1.95953,1.472 -2.35853,4.247 -0.88666,6.207 1.47186,1.959 4.24712,2.358 6.20665,0.886 1.95953,-1.472 2.35853,-4.247 0.88667,-6.206 -0.24827,-0.337 -0.54974,-0.639 -0.88667,-0.887 v -7.092 c 0,-1.471 -1.18813,-2.66 -2.65999,-2.66 z m 0,1.774 c 0.48766,0 0.88666,0.399 0.88666,0.886 v 2.66 h -1.77333 v -2.66 c 0,-0.487 0.399,-0.886 0.88667,-0.886 z m 7.53492,2.66 c 0,0 -2.78988,3.141 -3.07735,5.23 0.0544,0.06 0.10688,0.116 0.15412,0.18 0.60212,0.802 0.96042,1.715 1.08929,2.648 0.51425,0.379 1.14708,0.606 1.83394,0.606 v -1.036 h 1.03386 v -1.034 h -1.03386 v -1.034 h 1.03386 v -1.035 h -1.03386 v -1.034 h 1.03386 v -1.034 h -1.03386 v -1.036 h 1.03386 v -0.138 c -0.56894,-0.76 -1.03386,-1.283 -1.03386,-1.283 z m 1.03386,1.421 v 1.036 h 0.8174 c -0.23792,-0.367 -0.48074,-0.72 -0.71349,-1.036 z m 0,2.07 v 1.034 h 1.0356 v -1.034 z m 1.0356,0 h 0.38272 c -0.12413,-0.228 -0.24824,-0.46 -0.38272,-0.682 z m 0,1.034 v 1.035 h 1.03387 c 0,-0.315 -0.0767,-0.668 -0.20089,-1.035 z m 0,1.035 h -1.0356 v 1.034 h 1.0356 z m 0,1.034 v 1.034 h 0.23725 c 0.2793,-0.3 0.4803,-0.646 0.61478,-1.034 z m 0,1.034 h -1.0356 v 0.854 c 0.38792,-0.135 0.73561,-0.336 1.0356,-0.615 z"
id="sensor.thermal_comfort_dew_point_perception"
style="stroke-width:0.886665"
inkscape:label="sensor.thermal_comfort_dew_point_perception" />
<path
d="m 813.35885,-17651.599 -5.27488,4.351 -1.41003,5.635 6.21799,3.59 0.77667,-1.348 1.04249,-6.095 c 0.0647,-0.442 -0.0915,-0.769 -0.46461,-0.985 -0.2165,-0.125 -0.44875,-0.156 -0.70039,-0.09 -0.25166,0.06 -0.45349,0.212 -0.601,0.446 l -1.11646,1.935 -0.23577,1.474 -0.7813,-0.148 0.32593,-1.726 2.79231,-4.836 c 0.22871,-0.396 0.2859,-0.812 0.16643,-1.244 -0.11945,-0.431 -0.36621,-0.748 -0.73738,-0.957 z m 3.73311,0 c -0.4909,0 -0.94011,0.167 -1.29908,0.442 0.004,0.01 0.01,0.03 0.0139,0.04 0.23573,0.851 0.0938,1.854 -0.33979,2.605 l -0.31437,0.543 c 0.85162,0.508 1.45572,1.798 1.31526,2.758 l -0.005,0.02 -1.09797,6.431 -0.84833,1.468 -0.39758,0.691 c 0.62524,0.956 1.7044,1.569 2.97261,1.569 0.0629,0 0.12532,0 0.18723,0 1.9194,-0.09 3.36326,-1.597 3.36326,-3.546 0,-1.184 -0.59082,-2.249 -1.41927,-2.841 v -8.046 c 0,-1.184 -0.94772,-2.132 -2.13122,-2.132 z m 0,1.184 c 0.4734,0 0.94772,0.356 0.94772,0.948 v 1.419 h -1.77525 v -1.419 h -0.12019 c 0,-0.04 0.003,-0.07 0.007,-0.109 0.0536,-0.527 0.49697,-0.839 0.94078,-0.839 z m -12.60009,9.387 -1.60188,2.774 7.60027,4.387 1.60188,-2.774 z"
id="sensor.thermal_comfort_humidex_perception"
style="stroke-width:1.1835"
inkscape:label="sensor.thermal_comfort_humidex_perception" />
<path
d="m 808.21962,-17632.547 c -1.47231,0 -2.66106,1.188 -2.66106,2.661 v 7.094 c -1.96013,1.473 -2.35933,4.249 -0.88702,6.209 1.47231,1.96 4.24901,2.36 6.20914,0.887 1.96012,-1.472 2.35933,-4.249 0.88702,-6.209 -0.24835,-0.337 -0.54999,-0.638 -0.88702,-0.887 v -7.094 c 0,-1.473 -1.18875,-2.661 -2.66106,-2.661 z m 0,1.774 c 0.48781,0 0.88702,0.399 0.88702,0.887 v 2.661 h -1.77404 v -2.661 c 0,-0.488 0.39921,-0.887 0.88702,-0.887 z m 7.73197,1.774 c -1.15563,0.102 -2.22519,0.636 -3.00409,1.491 -0.30514,0.339 -0.54987,0.709 -0.73629,1.101 v 3.087 c 0.20993,0.205 0.44696,0.383 0.62195,0.62 0.47942,0.639 0.8028,1.349 0.98057,2.082 1.86663,1.244 4.39561,0.962 5.93541,-0.745 h -0.37248 c -1.13017,0 -2.22451,-0.412 -3.05433,-1.165 -1.89889,-1.691 -2.05582,-4.588 -0.37074,-6.471 z"
id="sensor.thermal_comfort_summer_simmer_perception"
style="stroke-width:0.887023"
inkscape:label="sensor.thermal_comfort_summer_simmer_perception" />
</g>
<g
id="thermal-comfort-group-template-5-6"
inkscape:label="thermal-comfort-group-master-bathroom"
transform="matrix(0.52345088,0,0,0.52345088,-43.377644,-8245.4985)">
<path
d="m 808.66443,-17670.656 c -1.47187,0 -2.66,1.189 -2.66,2.66 v 7.092 c -1.95953,1.472 -2.35853,4.247 -0.88666,6.207 1.47186,1.959 4.24712,2.358 6.20665,0.886 1.95953,-1.472 2.35853,-4.247 0.88667,-6.206 -0.24827,-0.337 -0.54974,-0.639 -0.88667,-0.887 v -7.092 c 0,-1.471 -1.18813,-2.66 -2.65999,-2.66 z m 0,1.774 c 0.48766,0 0.88666,0.399 0.88666,0.886 v 2.66 h -1.77333 v -2.66 c 0,-0.487 0.399,-0.886 0.88667,-0.886 z m 7.53492,2.66 c 0,0 -2.78988,3.141 -3.07735,5.23 0.0544,0.06 0.10688,0.116 0.15412,0.18 0.60212,0.802 0.96042,1.715 1.08929,2.648 0.51425,0.379 1.14708,0.606 1.83394,0.606 v -1.036 h 1.03386 v -1.034 h -1.03386 v -1.034 h 1.03386 v -1.035 h -1.03386 v -1.034 h 1.03386 v -1.034 h -1.03386 v -1.036 h 1.03386 v -0.138 c -0.56894,-0.76 -1.03386,-1.283 -1.03386,-1.283 z m 1.03386,1.421 v 1.036 h 0.8174 c -0.23792,-0.367 -0.48074,-0.72 -0.71349,-1.036 z m 0,2.07 v 1.034 h 1.0356 v -1.034 z m 1.0356,0 h 0.38272 c -0.12413,-0.228 -0.24824,-0.46 -0.38272,-0.682 z m 0,1.034 v 1.035 h 1.03387 c 0,-0.315 -0.0767,-0.668 -0.20089,-1.035 z m 0,1.035 h -1.0356 v 1.034 h 1.0356 z m 0,1.034 v 1.034 h 0.23725 c 0.2793,-0.3 0.4803,-0.646 0.61478,-1.034 z m 0,1.034 h -1.0356 v 0.854 c 0.38792,-0.135 0.73561,-0.336 1.0356,-0.615 z"
id="sensor.master_bathroom_thermal_comfort_dew_point_perception"
style="stroke-width:0.886665"
inkscape:label="sensor.master_bathroom_thermal_comfort_dew_point_perception" />
<path
d="m 813.35885,-17651.599 -5.27488,4.351 -1.41003,5.635 6.21799,3.59 0.77667,-1.348 1.04249,-6.095 c 0.0647,-0.442 -0.0915,-0.769 -0.46461,-0.985 -0.2165,-0.125 -0.44875,-0.156 -0.70039,-0.09 -0.25166,0.06 -0.45349,0.212 -0.601,0.446 l -1.11646,1.935 -0.23577,1.474 -0.7813,-0.148 0.32593,-1.726 2.79231,-4.836 c 0.22871,-0.396 0.2859,-0.812 0.16643,-1.244 -0.11945,-0.431 -0.36621,-0.748 -0.73738,-0.957 z m 3.73311,0 c -0.4909,0 -0.94011,0.167 -1.29908,0.442 0.004,0.01 0.01,0.03 0.0139,0.04 0.23573,0.851 0.0938,1.854 -0.33979,2.605 l -0.31437,0.543 c 0.85162,0.508 1.45572,1.798 1.31526,2.758 l -0.005,0.02 -1.09797,6.431 -0.84833,1.468 -0.39758,0.691 c 0.62524,0.956 1.7044,1.569 2.97261,1.569 0.0629,0 0.12532,0 0.18723,0 1.9194,-0.09 3.36326,-1.597 3.36326,-3.546 0,-1.184 -0.59082,-2.249 -1.41927,-2.841 v -8.046 c 0,-1.184 -0.94772,-2.132 -2.13122,-2.132 z m 0,1.184 c 0.4734,0 0.94772,0.356 0.94772,0.948 v 1.419 h -1.77525 v -1.419 h -0.12019 c 0,-0.04 0.003,-0.07 0.007,-0.109 0.0536,-0.527 0.49697,-0.839 0.94078,-0.839 z m -12.60009,9.387 -1.60188,2.774 7.60027,4.387 1.60188,-2.774 z"
id="sensor.master_bathroom_thermal_comfort_humidex_perception"
style="stroke-width:1.1835"
inkscape:label="sensor.master_bathroom_thermal_comfort_humidex_perception" />
<path
d="m 808.21962,-17632.547 c -1.47231,0 -2.66106,1.188 -2.66106,2.661 v 7.094 c -1.96013,1.473 -2.35933,4.249 -0.88702,6.209 1.47231,1.96 4.24901,2.36 6.20914,0.887 1.96012,-1.472 2.35933,-4.249 0.88702,-6.209 -0.24835,-0.337 -0.54999,-0.638 -0.88702,-0.887 v -7.094 c 0,-1.473 -1.18875,-2.661 -2.66106,-2.661 z m 0,1.774 c 0.48781,0 0.88702,0.399 0.88702,0.887 v 2.661 h -1.77404 v -2.661 c 0,-0.488 0.39921,-0.887 0.88702,-0.887 z m 7.73197,1.774 c -1.15563,0.102 -2.22519,0.636 -3.00409,1.491 -0.30514,0.339 -0.54987,0.709 -0.73629,1.101 v 3.087 c 0.20993,0.205 0.44696,0.383 0.62195,0.62 0.47942,0.639 0.8028,1.349 0.98057,2.082 1.86663,1.244 4.39561,0.962 5.93541,-0.745 h -0.37248 c -1.13017,0 -2.22451,-0.412 -3.05433,-1.165 -1.89889,-1.691 -2.05582,-4.588 -0.37074,-6.471 z"
id="sensor.master_bathroom_thermal_comfort_summer_simmer_perception"
style="stroke-width:0.887023"
inkscape:label="sensor.master_bathroom_thermal_comfort_summer_simmer_perception" />
</g>
<g
id="thermal-comfort-group-template-5-7"
inkscape:label="thermal-comfort-group-nursery"
transform="matrix(0.52345088,0,0,0.52345088,169.48694,-8146.061)">
<path
d="m 808.66443,-17670.656 c -1.47187,0 -2.66,1.189 -2.66,2.66 v 7.092 c -1.95953,1.472 -2.35853,4.247 -0.88666,6.207 1.47186,1.959 4.24712,2.358 6.20665,0.886 1.95953,-1.472 2.35853,-4.247 0.88667,-6.206 -0.24827,-0.337 -0.54974,-0.639 -0.88667,-0.887 v -7.092 c 0,-1.471 -1.18813,-2.66 -2.65999,-2.66 z m 0,1.774 c 0.48766,0 0.88666,0.399 0.88666,0.886 v 2.66 h -1.77333 v -2.66 c 0,-0.487 0.399,-0.886 0.88667,-0.886 z m 7.53492,2.66 c 0,0 -2.78988,3.141 -3.07735,5.23 0.0544,0.06 0.10688,0.116 0.15412,0.18 0.60212,0.802 0.96042,1.715 1.08929,2.648 0.51425,0.379 1.14708,0.606 1.83394,0.606 v -1.036 h 1.03386 v -1.034 h -1.03386 v -1.034 h 1.03386 v -1.035 h -1.03386 v -1.034 h 1.03386 v -1.034 h -1.03386 v -1.036 h 1.03386 v -0.138 c -0.56894,-0.76 -1.03386,-1.283 -1.03386,-1.283 z m 1.03386,1.421 v 1.036 h 0.8174 c -0.23792,-0.367 -0.48074,-0.72 -0.71349,-1.036 z m 0,2.07 v 1.034 h 1.0356 v -1.034 z m 1.0356,0 h 0.38272 c -0.12413,-0.228 -0.24824,-0.46 -0.38272,-0.682 z m 0,1.034 v 1.035 h 1.03387 c 0,-0.315 -0.0767,-0.668 -0.20089,-1.035 z m 0,1.035 h -1.0356 v 1.034 h 1.0356 z m 0,1.034 v 1.034 h 0.23725 c 0.2793,-0.3 0.4803,-0.646 0.61478,-1.034 z m 0,1.034 h -1.0356 v 0.854 c 0.38792,-0.135 0.73561,-0.336 1.0356,-0.615 z"
id="sensor.nursery_thermal_comfort_dew_point_perception"
style="stroke-width:0.886665"
inkscape:label="sensor.nursery_thermal_comfort_dew_point_perception" />
<path
d="m 813.35885,-17651.599 -5.27488,4.351 -1.41003,5.635 6.21799,3.59 0.77667,-1.348 1.04249,-6.095 c 0.0647,-0.442 -0.0915,-0.769 -0.46461,-0.985 -0.2165,-0.125 -0.44875,-0.156 -0.70039,-0.09 -0.25166,0.06 -0.45349,0.212 -0.601,0.446 l -1.11646,1.935 -0.23577,1.474 -0.7813,-0.148 0.32593,-1.726 2.79231,-4.836 c 0.22871,-0.396 0.2859,-0.812 0.16643,-1.244 -0.11945,-0.431 -0.36621,-0.748 -0.73738,-0.957 z m 3.73311,0 c -0.4909,0 -0.94011,0.167 -1.29908,0.442 0.004,0.01 0.01,0.03 0.0139,0.04 0.23573,0.851 0.0938,1.854 -0.33979,2.605 l -0.31437,0.543 c 0.85162,0.508 1.45572,1.798 1.31526,2.758 l -0.005,0.02 -1.09797,6.431 -0.84833,1.468 -0.39758,0.691 c 0.62524,0.956 1.7044,1.569 2.97261,1.569 0.0629,0 0.12532,0 0.18723,0 1.9194,-0.09 3.36326,-1.597 3.36326,-3.546 0,-1.184 -0.59082,-2.249 -1.41927,-2.841 v -8.046 c 0,-1.184 -0.94772,-2.132 -2.13122,-2.132 z m 0,1.184 c 0.4734,0 0.94772,0.356 0.94772,0.948 v 1.419 h -1.77525 v -1.419 h -0.12019 c 0,-0.04 0.003,-0.07 0.007,-0.109 0.0536,-0.527 0.49697,-0.839 0.94078,-0.839 z m -12.60009,9.387 -1.60188,2.774 7.60027,4.387 1.60188,-2.774 z"
id="sensor.nursery_thermal_comfort_humidex_perception"
style="stroke-width:1.1835"
inkscape:label="sensor.nursery_thermal_comfort_humidex_perception" />
<path
d="m 808.21962,-17632.547 c -1.47231,0 -2.66106,1.188 -2.66106,2.661 v 7.094 c -1.96013,1.473 -2.35933,4.249 -0.88702,6.209 1.47231,1.96 4.24901,2.36 6.20914,0.887 1.96012,-1.472 2.35933,-4.249 0.88702,-6.209 -0.24835,-0.337 -0.54999,-0.638 -0.88702,-0.887 v -7.094 c 0,-1.473 -1.18875,-2.661 -2.66106,-2.661 z m 0,1.774 c 0.48781,0 0.88702,0.399 0.88702,0.887 v 2.661 h -1.77404 v -2.661 c 0,-0.488 0.39921,-0.887 0.88702,-0.887 z m 7.73197,1.774 c -1.15563,0.102 -2.22519,0.636 -3.00409,1.491 -0.30514,0.339 -0.54987,0.709 -0.73629,1.101 v 3.087 c 0.20993,0.205 0.44696,0.383 0.62195,0.62 0.47942,0.639 0.8028,1.349 0.98057,2.082 1.86663,1.244 4.39561,0.962 5.93541,-0.745 h -0.37248 c -1.13017,0 -2.22451,-0.412 -3.05433,-1.165 -1.89889,-1.691 -2.05582,-4.588 -0.37074,-6.471 z"
id="sensor.nursery_thermal_comfort_summer_simmer_perception"
style="stroke-width:0.887023"
inkscape:label="sensor.nursery_thermal_comfort_summer_simmer_perception" />
</g>
<g
id="thermal-comfort-group-template-5-3"
inkscape:label="thermal-comfort-group-blue-room"
transform="matrix(0.52345088,0,0,0.52345088,214.42444,-8087.134)">
<path
d="m 808.66443,-17670.656 c -1.47187,0 -2.66,1.189 -2.66,2.66 v 7.092 c -1.95953,1.472 -2.35853,4.247 -0.88666,6.207 1.47186,1.959 4.24712,2.358 6.20665,0.886 1.95953,-1.472 2.35853,-4.247 0.88667,-6.206 -0.24827,-0.337 -0.54974,-0.639 -0.88667,-0.887 v -7.092 c 0,-1.471 -1.18813,-2.66 -2.65999,-2.66 z m 0,1.774 c 0.48766,0 0.88666,0.399 0.88666,0.886 v 2.66 h -1.77333 v -2.66 c 0,-0.487 0.399,-0.886 0.88667,-0.886 z m 7.53492,2.66 c 0,0 -2.78988,3.141 -3.07735,5.23 0.0544,0.06 0.10688,0.116 0.15412,0.18 0.60212,0.802 0.96042,1.715 1.08929,2.648 0.51425,0.379 1.14708,0.606 1.83394,0.606 v -1.036 h 1.03386 v -1.034 h -1.03386 v -1.034 h 1.03386 v -1.035 h -1.03386 v -1.034 h 1.03386 v -1.034 h -1.03386 v -1.036 h 1.03386 v -0.138 c -0.56894,-0.76 -1.03386,-1.283 -1.03386,-1.283 z m 1.03386,1.421 v 1.036 h 0.8174 c -0.23792,-0.367 -0.48074,-0.72 -0.71349,-1.036 z m 0,2.07 v 1.034 h 1.0356 v -1.034 z m 1.0356,0 h 0.38272 c -0.12413,-0.228 -0.24824,-0.46 -0.38272,-0.682 z m 0,1.034 v 1.035 h 1.03387 c 0,-0.315 -0.0767,-0.668 -0.20089,-1.035 z m 0,1.035 h -1.0356 v 1.034 h 1.0356 z m 0,1.034 v 1.034 h 0.23725 c 0.2793,-0.3 0.4803,-0.646 0.61478,-1.034 z m 0,1.034 h -1.0356 v 0.854 c 0.38792,-0.135 0.73561,-0.336 1.0356,-0.615 z"
id="sensor.blue_room_thermal_comfort_dew_point_perception"
style="stroke-width:0.886665"
inkscape:label="sensor.blue_room_thermal_comfort_dew_point_perception" />
<path
d="m 813.35885,-17651.599 -5.27488,4.351 -1.41003,5.635 6.21799,3.59 0.77667,-1.348 1.04249,-6.095 c 0.0647,-0.442 -0.0915,-0.769 -0.46461,-0.985 -0.2165,-0.125 -0.44875,-0.156 -0.70039,-0.09 -0.25166,0.06 -0.45349,0.212 -0.601,0.446 l -1.11646,1.935 -0.23577,1.474 -0.7813,-0.148 0.32593,-1.726 2.79231,-4.836 c 0.22871,-0.396 0.2859,-0.812 0.16643,-1.244 -0.11945,-0.431 -0.36621,-0.748 -0.73738,-0.957 z m 3.73311,0 c -0.4909,0 -0.94011,0.167 -1.29908,0.442 0.004,0.01 0.01,0.03 0.0139,0.04 0.23573,0.851 0.0938,1.854 -0.33979,2.605 l -0.31437,0.543 c 0.85162,0.508 1.45572,1.798 1.31526,2.758 l -0.005,0.02 -1.09797,6.431 -0.84833,1.468 -0.39758,0.691 c 0.62524,0.956 1.7044,1.569 2.97261,1.569 0.0629,0 0.12532,0 0.18723,0 1.9194,-0.09 3.36326,-1.597 3.36326,-3.546 0,-1.184 -0.59082,-2.249 -1.41927,-2.841 v -8.046 c 0,-1.184 -0.94772,-2.132 -2.13122,-2.132 z m 0,1.184 c 0.4734,0 0.94772,0.356 0.94772,0.948 v 1.419 h -1.77525 v -1.419 h -0.12019 c 0,-0.04 0.003,-0.07 0.007,-0.109 0.0536,-0.527 0.49697,-0.839 0.94078,-0.839 z m -12.60009,9.387 -1.60188,2.774 7.60027,4.387 1.60188,-2.774 z"
id="sensor.blue_room_thermal_comfort_humidex_perception"
style="stroke-width:1.1835"
inkscape:label="sensor.blue_room_thermal_comfort_humidex_perception" />
<path
d="m 808.21962,-17632.547 c -1.47231,0 -2.66106,1.188 -2.66106,2.661 v 7.094 c -1.96013,1.473 -2.35933,4.249 -0.88702,6.209 1.47231,1.96 4.24901,2.36 6.20914,0.887 1.96012,-1.472 2.35933,-4.249 0.88702,-6.209 -0.24835,-0.337 -0.54999,-0.638 -0.88702,-0.887 v -7.094 c 0,-1.473 -1.18875,-2.661 -2.66106,-2.661 z m 0,1.774 c 0.48781,0 0.88702,0.399 0.88702,0.887 v 2.661 h -1.77404 v -2.661 c 0,-0.488 0.39921,-0.887 0.88702,-0.887 z m 7.73197,1.774 c -1.15563,0.102 -2.22519,0.636 -3.00409,1.491 -0.30514,0.339 -0.54987,0.709 -0.73629,1.101 v 3.087 c 0.20993,0.205 0.44696,0.383 0.62195,0.62 0.47942,0.639 0.8028,1.349 0.98057,2.082 1.86663,1.244 4.39561,0.962 5.93541,-0.745 h -0.37248 c -1.13017,0 -2.22451,-0.412 -3.05433,-1.165 -1.89889,-1.691 -2.05582,-4.588 -0.37074,-6.471 z"
id="sensor.blue_room_thermal_comfort_summer_simmer_perception"
style="stroke-width:0.887023"
inkscape:label="sensor.blue_room_thermal_comfort_summer_simmer_perception" />
</g>
<g
id="thermal-comfort-group-template-5-5"
inkscape:label="thermal-comfort-group-great-room"
transform="matrix(0.52345088,0,0,0.52345088,371.30985,-8231.4985)">
<path
d="m 808.66443,-17670.656 c -1.47187,0 -2.66,1.189 -2.66,2.66 v 7.092 c -1.95953,1.472 -2.35853,4.247 -0.88666,6.207 1.47186,1.959 4.24712,2.358 6.20665,0.886 1.95953,-1.472 2.35853,-4.247 0.88667,-6.206 -0.24827,-0.337 -0.54974,-0.639 -0.88667,-0.887 v -7.092 c 0,-1.471 -1.18813,-2.66 -2.65999,-2.66 z m 0,1.774 c 0.48766,0 0.88666,0.399 0.88666,0.886 v 2.66 h -1.77333 v -2.66 c 0,-0.487 0.399,-0.886 0.88667,-0.886 z m 7.53492,2.66 c 0,0 -2.78988,3.141 -3.07735,5.23 0.0544,0.06 0.10688,0.116 0.15412,0.18 0.60212,0.802 0.96042,1.715 1.08929,2.648 0.51425,0.379 1.14708,0.606 1.83394,0.606 v -1.036 h 1.03386 v -1.034 h -1.03386 v -1.034 h 1.03386 v -1.035 h -1.03386 v -1.034 h 1.03386 v -1.034 h -1.03386 v -1.036 h 1.03386 v -0.138 c -0.56894,-0.76 -1.03386,-1.283 -1.03386,-1.283 z m 1.03386,1.421 v 1.036 h 0.8174 c -0.23792,-0.367 -0.48074,-0.72 -0.71349,-1.036 z m 0,2.07 v 1.034 h 1.0356 v -1.034 z m 1.0356,0 h 0.38272 c -0.12413,-0.228 -0.24824,-0.46 -0.38272,-0.682 z m 0,1.034 v 1.035 h 1.03387 c 0,-0.315 -0.0767,-0.668 -0.20089,-1.035 z m 0,1.035 h -1.0356 v 1.034 h 1.0356 z m 0,1.034 v 1.034 h 0.23725 c 0.2793,-0.3 0.4803,-0.646 0.61478,-1.034 z m 0,1.034 h -1.0356 v 0.854 c 0.38792,-0.135 0.73561,-0.336 1.0356,-0.615 z"
id="sensor.great_room_thermal_comfort_dew_point_perception"
style="stroke-width:0.886665"
inkscape:label="sensor.great_room_thermal_comfort_dew_point_perception" />
<path
d="m 813.35885,-17651.599 -5.27488,4.351 -1.41003,5.635 6.21799,3.59 0.77667,-1.348 1.04249,-6.095 c 0.0647,-0.442 -0.0915,-0.769 -0.46461,-0.985 -0.2165,-0.125 -0.44875,-0.156 -0.70039,-0.09 -0.25166,0.06 -0.45349,0.212 -0.601,0.446 l -1.11646,1.935 -0.23577,1.474 -0.7813,-0.148 0.32593,-1.726 2.79231,-4.836 c 0.22871,-0.396 0.2859,-0.812 0.16643,-1.244 -0.11945,-0.431 -0.36621,-0.748 -0.73738,-0.957 z m 3.73311,0 c -0.4909,0 -0.94011,0.167 -1.29908,0.442 0.004,0.01 0.01,0.03 0.0139,0.04 0.23573,0.851 0.0938,1.854 -0.33979,2.605 l -0.31437,0.543 c 0.85162,0.508 1.45572,1.798 1.31526,2.758 l -0.005,0.02 -1.09797,6.431 -0.84833,1.468 -0.39758,0.691 c 0.62524,0.956 1.7044,1.569 2.97261,1.569 0.0629,0 0.12532,0 0.18723,0 1.9194,-0.09 3.36326,-1.597 3.36326,-3.546 0,-1.184 -0.59082,-2.249 -1.41927,-2.841 v -8.046 c 0,-1.184 -0.94772,-2.132 -2.13122,-2.132 z m 0,1.184 c 0.4734,0 0.94772,0.356 0.94772,0.948 v 1.419 h -1.77525 v -1.419 h -0.12019 c 0,-0.04 0.003,-0.07 0.007,-0.109 0.0536,-0.527 0.49697,-0.839 0.94078,-0.839 z m -12.60009,9.387 -1.60188,2.774 7.60027,4.387 1.60188,-2.774 z"
id="sensor.great_room_thermal_comfort_humidex_perception"
style="stroke-width:1.1835"
inkscape:label="sensor.great_room_thermal_comfort_humidex_perception" />
<path
d="m 808.21962,-17632.547 c -1.47231,0 -2.66106,1.188 -2.66106,2.661 v 7.094 c -1.96013,1.473 -2.35933,4.249 -0.88702,6.209 1.47231,1.96 4.24901,2.36 6.20914,0.887 1.96012,-1.472 2.35933,-4.249 0.88702,-6.209 -0.24835,-0.337 -0.54999,-0.638 -0.88702,-0.887 v -7.094 c 0,-1.473 -1.18875,-2.661 -2.66106,-2.661 z m 0,1.774 c 0.48781,0 0.88702,0.399 0.88702,0.887 v 2.661 h -1.77404 v -2.661 c 0,-0.488 0.39921,-0.887 0.88702,-0.887 z m 7.73197,1.774 c -1.15563,0.102 -2.22519,0.636 -3.00409,1.491 -0.30514,0.339 -0.54987,0.709 -0.73629,1.101 v 3.087 c 0.20993,0.205 0.44696,0.383 0.62195,0.62 0.47942,0.639 0.8028,1.349 0.98057,2.082 1.86663,1.244 4.39561,0.962 5.93541,-0.745 h -0.37248 c -1.13017,0 -2.22451,-0.412 -3.05433,-1.165 -1.89889,-1.691 -2.05582,-4.588 -0.37074,-6.471 z"
id="sensor.great_room_thermal_comfort_summer_simmer_perception"
style="stroke-width:0.887023"
inkscape:label="sensor.great_room_thermal_comfort_summer_simmer_perception" />
</g>
<g
id="thermal-comfort-group-template-5-0"
inkscape:label="thermal-comfort-group-computer-area"
transform="matrix(0.52345088,0,0,0.52345088,363.20569,-8492.2485)">
<path
d="m 808.66443,-17670.656 c -1.47187,0 -2.66,1.189 -2.66,2.66 v 7.092 c -1.95953,1.472 -2.35853,4.247 -0.88666,6.207 1.47186,1.959 4.24712,2.358 6.20665,0.886 1.95953,-1.472 2.35853,-4.247 0.88667,-6.206 -0.24827,-0.337 -0.54974,-0.639 -0.88667,-0.887 v -7.092 c 0,-1.471 -1.18813,-2.66 -2.65999,-2.66 z m 0,1.774 c 0.48766,0 0.88666,0.399 0.88666,0.886 v 2.66 h -1.77333 v -2.66 c 0,-0.487 0.399,-0.886 0.88667,-0.886 z m 7.53492,2.66 c 0,0 -2.78988,3.141 -3.07735,5.23 0.0544,0.06 0.10688,0.116 0.15412,0.18 0.60212,0.802 0.96042,1.715 1.08929,2.648 0.51425,0.379 1.14708,0.606 1.83394,0.606 v -1.036 h 1.03386 v -1.034 h -1.03386 v -1.034 h 1.03386 v -1.035 h -1.03386 v -1.034 h 1.03386 v -1.034 h -1.03386 v -1.036 h 1.03386 v -0.138 c -0.56894,-0.76 -1.03386,-1.283 -1.03386,-1.283 z m 1.03386,1.421 v 1.036 h 0.8174 c -0.23792,-0.367 -0.48074,-0.72 -0.71349,-1.036 z m 0,2.07 v 1.034 h 1.0356 v -1.034 z m 1.0356,0 h 0.38272 c -0.12413,-0.228 -0.24824,-0.46 -0.38272,-0.682 z m 0,1.034 v 1.035 h 1.03387 c 0,-0.315 -0.0767,-0.668 -0.20089,-1.035 z m 0,1.035 h -1.0356 v 1.034 h 1.0356 z m 0,1.034 v 1.034 h 0.23725 c 0.2793,-0.3 0.4803,-0.646 0.61478,-1.034 z m 0,1.034 h -1.0356 v 0.854 c 0.38792,-0.135 0.73561,-0.336 1.0356,-0.615 z"
id="sensor.computer_area_thermal_comfort_dew_point_perception"
style="stroke-width:0.886665"
inkscape:label="sensor.computer_area_thermal_comfort_dew_point_perception" />
<path
d="m 813.35885,-17651.599 -5.27488,4.351 -1.41003,5.635 6.21799,3.59 0.77667,-1.348 1.04249,-6.095 c 0.0647,-0.442 -0.0915,-0.769 -0.46461,-0.985 -0.2165,-0.125 -0.44875,-0.156 -0.70039,-0.09 -0.25166,0.06 -0.45349,0.212 -0.601,0.446 l -1.11646,1.935 -0.23577,1.474 -0.7813,-0.148 0.32593,-1.726 2.79231,-4.836 c 0.22871,-0.396 0.2859,-0.812 0.16643,-1.244 -0.11945,-0.431 -0.36621,-0.748 -0.73738,-0.957 z m 3.73311,0 c -0.4909,0 -0.94011,0.167 -1.29908,0.442 0.004,0.01 0.01,0.03 0.0139,0.04 0.23573,0.851 0.0938,1.854 -0.33979,2.605 l -0.31437,0.543 c 0.85162,0.508 1.45572,1.798 1.31526,2.758 l -0.005,0.02 -1.09797,6.431 -0.84833,1.468 -0.39758,0.691 c 0.62524,0.956 1.7044,1.569 2.97261,1.569 0.0629,0 0.12532,0 0.18723,0 1.9194,-0.09 3.36326,-1.597 3.36326,-3.546 0,-1.184 -0.59082,-2.249 -1.41927,-2.841 v -8.046 c 0,-1.184 -0.94772,-2.132 -2.13122,-2.132 z m 0,1.184 c 0.4734,0 0.94772,0.356 0.94772,0.948 v 1.419 h -1.77525 v -1.419 h -0.12019 c 0,-0.04 0.003,-0.07 0.007,-0.109 0.0536,-0.527 0.49697,-0.839 0.94078,-0.839 z m -12.60009,9.387 -1.60188,2.774 7.60027,4.387 1.60188,-2.774 z"
id="sensor.computer_area_thermal_comfort_humidex_perception"
style="stroke-width:1.1835"
inkscape:label="sensor.computer_area_thermal_comfort_humidex_perception" />
<path
d="m 808.21962,-17632.547 c -1.47231,0 -2.66106,1.188 -2.66106,2.661 v 7.094 c -1.96013,1.473 -2.35933,4.249 -0.88702,6.209 1.47231,1.96 4.24901,2.36 6.20914,0.887 1.96012,-1.472 2.35933,-4.249 0.88702,-6.209 -0.24835,-0.337 -0.54999,-0.638 -0.88702,-0.887 v -7.094 c 0,-1.473 -1.18875,-2.661 -2.66106,-2.661 z m 0,1.774 c 0.48781,0 0.88702,0.399 0.88702,0.887 v 2.661 h -1.77404 v -2.661 c 0,-0.488 0.39921,-0.887 0.88702,-0.887 z m 7.73197,1.774 c -1.15563,0.102 -2.22519,0.636 -3.00409,1.491 -0.30514,0.339 -0.54987,0.709 -0.73629,1.101 v 3.087 c 0.20993,0.205 0.44696,0.383 0.62195,0.62 0.47942,0.639 0.8028,1.349 0.98057,2.082 1.86663,1.244 4.39561,0.962 5.93541,-0.745 h -0.37248 c -1.13017,0 -2.22451,-0.412 -3.05433,-1.165 -1.89889,-1.691 -2.05582,-4.588 -0.37074,-6.471 z"
id="sensor.computer_area_thermal_comfort_summer_simmer_perception"
style="stroke-width:0.887023"
inkscape:label="sensor.computer_area_thermal_comfort_summer_simmer_perception" />
</g>
<g
id="thermal-comfort-group-template-5-8"
inkscape:label="thermal-comfort-group-utilty-room"
transform="matrix(0.52345088,0,0,0.52345088,219.58069,-8334.6235)">
<path
d="m 808.66443,-17670.656 c -1.47187,0 -2.66,1.189 -2.66,2.66 v 7.092 c -1.95953,1.472 -2.35853,4.247 -0.88666,6.207 1.47186,1.959 4.24712,2.358 6.20665,0.886 1.95953,-1.472 2.35853,-4.247 0.88667,-6.206 -0.24827,-0.337 -0.54974,-0.639 -0.88667,-0.887 v -7.092 c 0,-1.471 -1.18813,-2.66 -2.65999,-2.66 z m 0,1.774 c 0.48766,0 0.88666,0.399 0.88666,0.886 v 2.66 h -1.77333 v -2.66 c 0,-0.487 0.399,-0.886 0.88667,-0.886 z m 7.53492,2.66 c 0,0 -2.78988,3.141 -3.07735,5.23 0.0544,0.06 0.10688,0.116 0.15412,0.18 0.60212,0.802 0.96042,1.715 1.08929,2.648 0.51425,0.379 1.14708,0.606 1.83394,0.606 v -1.036 h 1.03386 v -1.034 h -1.03386 v -1.034 h 1.03386 v -1.035 h -1.03386 v -1.034 h 1.03386 v -1.034 h -1.03386 v -1.036 h 1.03386 v -0.138 c -0.56894,-0.76 -1.03386,-1.283 -1.03386,-1.283 z m 1.03386,1.421 v 1.036 h 0.8174 c -0.23792,-0.367 -0.48074,-0.72 -0.71349,-1.036 z m 0,2.07 v 1.034 h 1.0356 v -1.034 z m 1.0356,0 h 0.38272 c -0.12413,-0.228 -0.24824,-0.46 -0.38272,-0.682 z m 0,1.034 v 1.035 h 1.03387 c 0,-0.315 -0.0767,-0.668 -0.20089,-1.035 z m 0,1.035 h -1.0356 v 1.034 h 1.0356 z m 0,1.034 v 1.034 h 0.23725 c 0.2793,-0.3 0.4803,-0.646 0.61478,-1.034 z m 0,1.034 h -1.0356 v 0.854 c 0.38792,-0.135 0.73561,-0.336 1.0356,-0.615 z"
id="sensor.utility_room_thermal_comfort_dew_point_perception"
style="stroke-width:0.886665"
inkscape:label="sensor.utility_room_thermal_comfort_dew_point_perception" />
<path
d="m 813.35885,-17651.599 -5.27488,4.351 -1.41003,5.635 6.21799,3.59 0.77667,-1.348 1.04249,-6.095 c 0.0647,-0.442 -0.0915,-0.769 -0.46461,-0.985 -0.2165,-0.125 -0.44875,-0.156 -0.70039,-0.09 -0.25166,0.06 -0.45349,0.212 -0.601,0.446 l -1.11646,1.935 -0.23577,1.474 -0.7813,-0.148 0.32593,-1.726 2.79231,-4.836 c 0.22871,-0.396 0.2859,-0.812 0.16643,-1.244 -0.11945,-0.431 -0.36621,-0.748 -0.73738,-0.957 z m 3.73311,0 c -0.4909,0 -0.94011,0.167 -1.29908,0.442 0.004,0.01 0.01,0.03 0.0139,0.04 0.23573,0.851 0.0938,1.854 -0.33979,2.605 l -0.31437,0.543 c 0.85162,0.508 1.45572,1.798 1.31526,2.758 l -0.005,0.02 -1.09797,6.431 -0.84833,1.468 -0.39758,0.691 c 0.62524,0.956 1.7044,1.569 2.97261,1.569 0.0629,0 0.12532,0 0.18723,0 1.9194,-0.09 3.36326,-1.597 3.36326,-3.546 0,-1.184 -0.59082,-2.249 -1.41927,-2.841 v -8.046 c 0,-1.184 -0.94772,-2.132 -2.13122,-2.132 z m 0,1.184 c 0.4734,0 0.94772,0.356 0.94772,0.948 v 1.419 h -1.77525 v -1.419 h -0.12019 c 0,-0.04 0.003,-0.07 0.007,-0.109 0.0536,-0.527 0.49697,-0.839 0.94078,-0.839 z m -12.60009,9.387 -1.60188,2.774 7.60027,4.387 1.60188,-2.774 z"
id="sensor.utility_room_thermal_comfort_humidex_perception"
style="stroke-width:1.1835"
inkscape:label="sensor.utility_room_thermal_comfort_humidex_perception" />
<path
d="m 808.21962,-17632.547 c -1.47231,0 -2.66106,1.188 -2.66106,2.661 v 7.094 c -1.96013,1.473 -2.35933,4.249 -0.88702,6.209 1.47231,1.96 4.24901,2.36 6.20914,0.887 1.96012,-1.472 2.35933,-4.249 0.88702,-6.209 -0.24835,-0.337 -0.54999,-0.638 -0.88702,-0.887 v -7.094 c 0,-1.473 -1.18875,-2.661 -2.66106,-2.661 z m 0,1.774 c 0.48781,0 0.88702,0.399 0.88702,0.887 v 2.661 h -1.77404 v -2.661 c 0,-0.488 0.39921,-0.887 0.88702,-0.887 z m 7.73197,1.774 c -1.15563,0.102 -2.22519,0.636 -3.00409,1.491 -0.30514,0.339 -0.54987,0.709 -0.73629,1.101 v 3.087 c 0.20993,0.205 0.44696,0.383 0.62195,0.62 0.47942,0.639 0.8028,1.349 0.98057,2.082 1.86663,1.244 4.39561,0.962 5.93541,-0.745 h -0.37248 c -1.13017,0 -2.22451,-0.412 -3.05433,-1.165 -1.89889,-1.691 -2.05582,-4.588 -0.37074,-6.471 z"
id="sensor.utility_room_thermal_comfort_summer_simmer_perception"
style="stroke-width:0.887023"
inkscape:label="sensor.utility_room_thermal_comfort_summer_simmer_perception" />
</g>
<g
id="thermal-comfort-group-template-5-01"
inkscape:label="thermal-comfort-group-front-room"
transform="matrix(0.52345088,0,0,0.52345088,47.226518,-8506.2381)">
<path
d="m 808.66443,-17670.656 c -1.47187,0 -2.66,1.189 -2.66,2.66 v 7.092 c -1.95953,1.472 -2.35853,4.247 -0.88666,6.207 1.47186,1.959 4.24712,2.358 6.20665,0.886 1.95953,-1.472 2.35853,-4.247 0.88667,-6.206 -0.24827,-0.337 -0.54974,-0.639 -0.88667,-0.887 v -7.092 c 0,-1.471 -1.18813,-2.66 -2.65999,-2.66 z m 0,1.774 c 0.48766,0 0.88666,0.399 0.88666,0.886 v 2.66 h -1.77333 v -2.66 c 0,-0.487 0.399,-0.886 0.88667,-0.886 z m 7.53492,2.66 c 0,0 -2.78988,3.141 -3.07735,5.23 0.0544,0.06 0.10688,0.116 0.15412,0.18 0.60212,0.802 0.96042,1.715 1.08929,2.648 0.51425,0.379 1.14708,0.606 1.83394,0.606 v -1.036 h 1.03386 v -1.034 h -1.03386 v -1.034 h 1.03386 v -1.035 h -1.03386 v -1.034 h 1.03386 v -1.034 h -1.03386 v -1.036 h 1.03386 v -0.138 c -0.56894,-0.76 -1.03386,-1.283 -1.03386,-1.283 z m 1.03386,1.421 v 1.036 h 0.8174 c -0.23792,-0.367 -0.48074,-0.72 -0.71349,-1.036 z m 0,2.07 v 1.034 h 1.0356 v -1.034 z m 1.0356,0 h 0.38272 c -0.12413,-0.228 -0.24824,-0.46 -0.38272,-0.682 z m 0,1.034 v 1.035 h 1.03387 c 0,-0.315 -0.0767,-0.668 -0.20089,-1.035 z m 0,1.035 h -1.0356 v 1.034 h 1.0356 z m 0,1.034 v 1.034 h 0.23725 c 0.2793,-0.3 0.4803,-0.646 0.61478,-1.034 z m 0,1.034 h -1.0356 v 0.854 c 0.38792,-0.135 0.73561,-0.336 1.0356,-0.615 z"
id="sensor.front_room_thermal_comfort_dew_point_perception"
style="stroke-width:0.886665"
inkscape:label="sensor.front_room_thermal_comfort_dew_point_perception" />
<path
d="m 813.35885,-17651.599 -5.27488,4.351 -1.41003,5.635 6.21799,3.59 0.77667,-1.348 1.04249,-6.095 c 0.0647,-0.442 -0.0915,-0.769 -0.46461,-0.985 -0.2165,-0.125 -0.44875,-0.156 -0.70039,-0.09 -0.25166,0.06 -0.45349,0.212 -0.601,0.446 l -1.11646,1.935 -0.23577,1.474 -0.7813,-0.148 0.32593,-1.726 2.79231,-4.836 c 0.22871,-0.396 0.2859,-0.812 0.16643,-1.244 -0.11945,-0.431 -0.36621,-0.748 -0.73738,-0.957 z m 3.73311,0 c -0.4909,0 -0.94011,0.167 -1.29908,0.442 0.004,0.01 0.01,0.03 0.0139,0.04 0.23573,0.851 0.0938,1.854 -0.33979,2.605 l -0.31437,0.543 c 0.85162,0.508 1.45572,1.798 1.31526,2.758 l -0.005,0.02 -1.09797,6.431 -0.84833,1.468 -0.39758,0.691 c 0.62524,0.956 1.7044,1.569 2.97261,1.569 0.0629,0 0.12532,0 0.18723,0 1.9194,-0.09 3.36326,-1.597 3.36326,-3.546 0,-1.184 -0.59082,-2.249 -1.41927,-2.841 v -8.046 c 0,-1.184 -0.94772,-2.132 -2.13122,-2.132 z m 0,1.184 c 0.4734,0 0.94772,0.356 0.94772,0.948 v 1.419 h -1.77525 v -1.419 h -0.12019 c 0,-0.04 0.003,-0.07 0.007,-0.109 0.0536,-0.527 0.49697,-0.839 0.94078,-0.839 z m -12.60009,9.387 -1.60188,2.774 7.60027,4.387 1.60188,-2.774 z"
id="sensor.front_room_thermal_comfort_humidex_perception"
style="stroke-width:1.1835"
inkscape:label="sensor.front_room_thermal_comfort_humidex_perception" />
<path
d="m 808.21962,-17632.547 c -1.47231,0 -2.66106,1.188 -2.66106,2.661 v 7.094 c -1.96013,1.473 -2.35933,4.249 -0.88702,6.209 1.47231,1.96 4.24901,2.36 6.20914,0.887 1.96012,-1.472 2.35933,-4.249 0.88702,-6.209 -0.24835,-0.337 -0.54999,-0.638 -0.88702,-0.887 v -7.094 c 0,-1.473 -1.18875,-2.661 -2.66106,-2.661 z m 0,1.774 c 0.48781,0 0.88702,0.399 0.88702,0.887 v 2.661 h -1.77404 v -2.661 c 0,-0.488 0.39921,-0.887 0.88702,-0.887 z m 7.73197,1.774 c -1.15563,0.102 -2.22519,0.636 -3.00409,1.491 -0.30514,0.339 -0.54987,0.709 -0.73629,1.101 v 3.087 c 0.20993,0.205 0.44696,0.383 0.62195,0.62 0.47942,0.639 0.8028,1.349 0.98057,2.082 1.86663,1.244 4.39561,0.962 5.93541,-0.745 h -0.37248 c -1.13017,0 -2.22451,-0.412 -3.05433,-1.165 -1.89889,-1.691 -2.05582,-4.588 -0.37074,-6.471 z"
id="sensor.front_room_thermal_comfort_summer_simmer_perception"
style="stroke-width:0.887023"
inkscape:label="sensor.front_room_thermal_comfort_summer_simmer_perception" />
</g>
</g> </g>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 495 KiB

After

Width:  |  Height:  |  Size: 529 KiB