Multiple PID defaults

This commit is contained in:
Scott Lahteine 2020-09-24 00:42:04 -05:00
parent 83970fc2dc
commit 9423a57c28
202 changed files with 2321 additions and 3312 deletions

View file

@ -514,33 +514,24 @@
//#define PID_PARAMS_PER_HOTEND // Uses separate PID parameters for each extruder (useful for mismatched extruders)
// Set/get with gcode: M301 E[extruder number, 0-2]
// If you are using a pre-configured hotend then you can use one of the value sets by uncommenting it
#if ENABLED(PID_PARAMS_PER_HOTEND)
// Specify between 1 and HOTENDS values per array.
// If fewer than EXTRUDER values are provided, the last element will be repeated.
#define DEFAULT_Kp_LIST { 26.15, 26.15 }
#define DEFAULT_Ki_LIST { 2.71, 2.71 }
#define DEFAULT_Kd_LIST { 63.02, 63.02 }
#else
// TinyBoy2 Extruder - calculated with PID Autotune and tested
// "M303 E0 C8 S200"
//#define DEFAULT_Kp 25.63
//#define DEFAULT_Ki 2.66
//#define DEFAULT_Kd 61.73
// Ultimaker
//#define DEFAULT_Kp 22.2
//#define DEFAULT_Ki 1.08
//#define DEFAULT_Kd 114
// MakerGear
//#define DEFAULT_Kp 7.0
//#define DEFAULT_Ki 0.1
//#define DEFAULT_Kd 12
// Mendel Parts V9 on 12V
//#define DEFAULT_Kp 63.0
//#define DEFAULT_Ki 2.25
//#define DEFAULT_Kd 440
// TinyBoy2 Extruder - calculated with PID Autotune and tested
// "M303 E0 C8 S200"
//#define DEFAULT_Kp 25.63
//#define DEFAULT_Ki 2.66
//#define DEFAULT_Kd 61.73
// TinyBoy2 Extruder - same, but with fan @ 25% duty
#define DEFAULT_Kp 26.15
#define DEFAULT_Ki 2.71
#define DEFAULT_Kd 63.02
// TinyBoy2 Extruder - same, but with fan @ 25% duty
#define DEFAULT_Kp 26.15
#define DEFAULT_Ki 2.71
#define DEFAULT_Kd 63.02
#endif
#endif // PIDTEMP
//===========================================================================