refactor: increased max. target indoor temp. from 30 to 40 degrees (for control by return temperature)

This commit is contained in:
Yurii
2025-05-18 16:01:04 +03:00
parent 612b17b86f
commit a667317412
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@
#define THERMOSTAT_INDOOR_DEFAULT_TEMP 20 #define THERMOSTAT_INDOOR_DEFAULT_TEMP 20
#define THERMOSTAT_INDOOR_MIN_TEMP 5 #define THERMOSTAT_INDOOR_MIN_TEMP 5
#define THERMOSTAT_INDOOR_MAX_TEMP 30 #define THERMOSTAT_INDOOR_MAX_TEMP 40
#define DEFAULT_NTC_NOMINAL_RESISTANCE 10000.0f #define DEFAULT_NTC_NOMINAL_RESISTANCE 10000.0f
#define DEFAULT_NTC_NOMINAL_TEMP 25.0f #define DEFAULT_NTC_NOMINAL_TEMP 25.0f

View File

@@ -869,7 +869,7 @@
if (data.opentherm.options.nativeHeatingControl) { if (data.opentherm.options.nativeHeatingControl) {
setInputValue("[name='emergency[target]']", data.emergency.target, { setInputValue("[name='emergency[target]']", data.emergency.target, {
"min": data.system.unitSystem == 0 ? 5 : 41, "min": data.system.unitSystem == 0 ? 5 : 41,
"max": data.system.unitSystem == 0 ? 30 : 86 "max": data.system.unitSystem == 0 ? 40 : 86
}); });
} else { } else {