Skip to content

Commit 2020402

Browse files
committed
config: set PID autotuning values
Ref: https://github.com/MarlinFirmware/Configurations/blob/1c8e649/config/examples/Anet/A8/Configuration.h#L607-L620 Signed-off-by: Bhavin Gandhi <bhavin7392@gmail.com>
1 parent 7f47338 commit 2020402

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

marlin-config/Configuration.h

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -492,16 +492,17 @@
492492
//#define PID_PARAMS_PER_HOTEND // Uses separate PID parameters for each extruder (useful for mismatched extruders)
493493
// Set/get with gcode: M301 E[extruder number, 0-2]
494494

495+
// PID autotuning at 100% fan speed: M106 S255, M303 S195 C10
495496
#if ENABLED(PID_PARAMS_PER_HOTEND)
496497
// Specify between 1 and HOTENDS values per array.
497498
// If fewer than EXTRUDER values are provided, the last element will be repeated.
498-
#define DEFAULT_Kp_LIST { 22.20, 22.20 }
499-
#define DEFAULT_Ki_LIST { 1.08, 1.08 }
500-
#define DEFAULT_Kd_LIST { 114.00, 114.00 }
499+
#define DEFAULT_Kp_LIST { 46.45, 46.45 }
500+
#define DEFAULT_Ki_LIST { 4.76, 4.76 }
501+
#define DEFAULT_Kd_LIST { 113.20, 113.20 }
501502
#else
502-
#define DEFAULT_Kp 22.20
503-
#define DEFAULT_Ki 1.08
504-
#define DEFAULT_Kd 114.00
503+
#define DEFAULT_Kp 46.45
504+
#define DEFAULT_Ki 4.76
505+
#define DEFAULT_Kd 113.20
505506
#endif
506507
#endif // PIDTEMP
507508

0 commit comments

Comments
 (0)