mirror of
https://github.com/MarlinFirmware/Configurations.git
synced 2025-07-16 03:07:57 -06:00
Multiple PID defaults
This commit is contained in:
parent
83970fc2dc
commit
9423a57c28
202 changed files with 2321 additions and 3312 deletions
|
@ -490,23 +490,28 @@
|
|||
//#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 { 16.17, 16.17 }
|
||||
#define DEFAULT_Ki_LIST { 0.85, 0.85 }
|
||||
#define DEFAULT_Kd_LIST { 76.55, 76.55 }
|
||||
#else
|
||||
// Rigidbot hotend
|
||||
#define DEFAULT_Kp 16.17
|
||||
#define DEFAULT_Ki 0.85
|
||||
#define DEFAULT_Kd 76.55
|
||||
|
||||
// Rigidbot hotend
|
||||
#define DEFAULT_Kp 16.17
|
||||
#define DEFAULT_Ki 0.85
|
||||
#define DEFAULT_Kd 76.55
|
||||
|
||||
// Base DGlass3D/E3Dv6 hotend
|
||||
//#define DEFAULT_Kp 10
|
||||
//#define DEFAULT_Ki 0.85
|
||||
//#define DEFAULT_Kd 245
|
||||
|
||||
// E3D w/ rigidbot cartridge
|
||||
//#define DEFAULT_Kp 16.30
|
||||
//#define DEFAULT_Ki 0.95
|
||||
//#define DEFAULT_Kd 69.69
|
||||
// Base DGlass3D/E3Dv6 hotend
|
||||
//#define DEFAULT_Kp 10
|
||||
//#define DEFAULT_Ki 0.85
|
||||
//#define DEFAULT_Kd 245
|
||||
|
||||
// E3D w/ rigidbot cartridge
|
||||
//#define DEFAULT_Kp 16.30
|
||||
//#define DEFAULT_Ki 0.95
|
||||
//#define DEFAULT_Kd 69.69
|
||||
#endif
|
||||
#endif // PIDTEMP
|
||||
|
||||
//===========================================================================
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue