From 8c958c9424c2f59419f63d5f846dc9b6c8c58a2c421fbaed214942474311b32b Mon Sep 17 00:00:00 2001 From: localhorst <localhorst@mosad.xyz> Date: Fri, 3 Jan 2025 16:26:07 +0100 Subject: [PATCH] increase max chamber temp to 80 --- main/control.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/control.c b/main/control.c index 9a81a65..29a6295 100644 --- a/main/control.c +++ b/main/control.c @@ -12,7 +12,7 @@ #define RETURN_FLOW_TEMPERATURE_LOWER_LIMIT_DAY 30.0 #define RETURN_FLOW_TEMPERATURE_LOWER_LIMIT_NIGHT 25.0 -#define CHAMPER_TEMPERATURE_TARGET 70.0 +#define CHAMPER_TEMPERATURE_TARGET 80.0 #define BURNER_FAULT_DETECTION_THRESHOLD (60U * 3U) // Detect burner fault if after 3 minutes no burner start detected static const char *TAG = "smart-oil-heater-control-system-control";