Adjust temperature thresholds for heating conditions and update target temperature calculations
This commit is contained in:
@@ -27,7 +27,7 @@ smart_heating_templates_library:
|
||||
templates_library:
|
||||
clim_conditions:
|
||||
local_expressions:
|
||||
temp_threshold: "sleeping_in_the_room ? 0.5 : 1"
|
||||
temp_threshold: "sleeping_in_the_room ? 0 : 1"
|
||||
trigger_conditions:
|
||||
- "not binary_sensor.heatpump_winter_mode and (ext_temperature >= room_temperature or ext_temperature >= target_temperature or cant_open_window) and room_temperature >= (quick_resume ? target_temperature : (target_temperature + temp_threshold))"
|
||||
- not binary_sensor.heatpump_winter_mode and self and (ext_temperature >= target_temperature or cant_open_window)
|
||||
@@ -63,7 +63,7 @@ desk_heatpump:
|
||||
auto: binary_sensor.heatpump_winter_mode
|
||||
quiet: True
|
||||
|
||||
target_temperature: sensor.target_temperature_heatpump
|
||||
target_temperature: sensor.target_temperature_heatpump + 0.5
|
||||
hvac_mode: "binary_sensor.heatpump_winter_mode ? 'heat' : 'cool'"
|
||||
fan_mode: sensor.desk_heatpump_fan_mode
|
||||
|
||||
@@ -149,7 +149,7 @@ living_room_heatpump:
|
||||
quick_resume: binary_sensor.living_room_heatpump_quick_resume
|
||||
stay_on_while_sleeping: false
|
||||
|
||||
target_temperature: sensor.target_temperature_heatpump
|
||||
target_temperature: sensor.target_temperature_heatpump + 0.5
|
||||
hvac_mode: "binary_sensor.heatpump_winter_mode ? 'heat' : 'cool'"
|
||||
|
||||
smart_conditions:
|
||||
|
||||
Reference in New Issue
Block a user