From 1d63a3d7bc19733994ff3632c56eea4efcdec32d Mon Sep 17 00:00:00 2001 From: Paul Fertser Date: Fri, 28 Aug 2020 13:11:47 +0300 Subject: [PATCH] Fix temp change long step MAX value There is no space on the screen to output 3 digits, and the corresponding display function assumes the value is less than 100. --- workspace/TS100/configuration.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workspace/TS100/configuration.h b/workspace/TS100/configuration.h index 57bdc23e..25e9ab7a 100644 --- a/workspace/TS100/configuration.h +++ b/workspace/TS100/configuration.h @@ -53,7 +53,7 @@ #define TEMP_CHANGE_SHORT_STEP 1 // Default temp change short step +1 #define TEMP_CHANGE_LONG_STEP 10 // Default temp change long step +10 #define TEMP_CHANGE_SHORT_STEP_MAX 50 // Temp change short step MAX value -#define TEMP_CHANGE_LONG_STEP_MAX 100 // Temp change long step MAX value +#define TEMP_CHANGE_LONG_STEP_MAX 90 // Temp change long step MAX value /* Power pulse for keeping power banks awake*/ #define POWER_PULSE_INCREMENT 1