From 69e756f8990e2c772e0707ed49ff8fc77c257236 Mon Sep 17 00:00:00 2001 From: Ian Mancini Date: Sat, 14 May 2022 23:34:22 -0300 Subject: [PATCH] Update PID tuning values --- Marlin/Configuration.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h index 65417a7..461bdde 100644 --- a/Marlin/Configuration.h +++ b/Marlin/Configuration.h @@ -602,13 +602,13 @@ #if ENABLED(PID_PARAMS_PER_HOTEND) // Specify up to one value per hotend here, according to your setup. // If there are fewer values, the last one applies to the remaining hotends. - #define DEFAULT_Kp_LIST { 21.00, 20.00 } - #define DEFAULT_Ki_LIST { 1.25, 1.25 } - #define DEFAULT_Kd_LIST { 86.00, 86.00 } + #define DEFAULT_Kp_LIST { 34.75, 34.75 } + #define DEFAULT_Ki_LIST { 3.14, 3.14 } + #define DEFAULT_Kd_LIST { 96.07, 96.07 } #else - #define DEFAULT_Kp 21.00 - #define DEFAULT_Ki 1.25 - #define DEFAULT_Kd 86.00 + #define DEFAULT_Kp 34.75 + #define DEFAULT_Ki 3.14 + #define DEFAULT_Kd 96.07 #endif #endif // PIDTEMP