From e8c62a1bd71cf662ad44e565cdfc5ebe203e19539969683c26c068c79b5e3d7c Mon Sep 17 00:00:00 2001 From: localhorst Date: Fri, 24 Oct 2025 15:35:23 +0200 Subject: [PATCH] slow down damping --- main/inputs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/inputs.h b/main/inputs.h index a005e3c..17e095b 100644 --- a/main/inputs.h +++ b/main/inputs.h @@ -6,8 +6,8 @@ #define AVG60S_SAMPLE_SIZE 60U #define AVG24H_SAMPLE_SIZE 24U #define PRED60S_SAMPLE_SIZE 60U -#define DAMPING_FACTOR_WARMER 0.001f -#define DAMPING_FACTOR_COLDER 0.005f +#define DAMPING_FACTOR_WARMER 0.00001f // 0.001% +#define DAMPING_FACTOR_COLDER 0.00005f // 0.005% typedef enum _BurnerErrorState {