mirror of
https://github.com/MarlinFirmware/Configurations.git
synced 2025-07-22 22:24:03 -06:00
Multiple PID defaults
This commit is contained in:
parent
83970fc2dc
commit
9423a57c28
202 changed files with 2321 additions and 3312 deletions
|
@ -94,7 +94,11 @@
|
|||
*/
|
||||
//#define BED_AC
|
||||
|
||||
/**
|
||||
* Enable for all-metal hotend PID tuning
|
||||
*/
|
||||
//#define HotendAllMetal
|
||||
|
||||
/**
|
||||
* Enable if you install a filament runout sensor from www.formbotusa.com
|
||||
*/
|
||||
|
@ -534,29 +538,27 @@
|
|||
//#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
|
||||
|
||||
// Ultimaker
|
||||
#if ENABLED(HotendAllMetal)
|
||||
#define DEFAULT_Kp 21.9
|
||||
#define DEFAULT_Ki 1.5
|
||||
#define DEFAULT_Kd 79.88
|
||||
#define HOTEND_Kp 21.90
|
||||
#define HOTEND_Ki 1.50
|
||||
#define HOTEND_Kd 79.88
|
||||
#else
|
||||
#define DEFAULT_Kp 22.2
|
||||
#define DEFAULT_Ki 1.08
|
||||
#define DEFAULT_Kd 114
|
||||
#define HOTEND_Kp 22.20
|
||||
#define HOTEND_Ki 1.08
|
||||
#define HOTEND_Kd 114.00
|
||||
#endif
|
||||
|
||||
// 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
|
||||
|
||||
#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 { HOTEND_Kp, HOTEND_Kp }
|
||||
#define DEFAULT_Ki_LIST { HOTEND_Ki, HOTEND_Ki }
|
||||
#define DEFAULT_Kd_LIST { HOTEND_Kd, HOTEND_Kd }
|
||||
#else
|
||||
#define DEFAULT_Kp HOTEND_Kp
|
||||
#define DEFAULT_Ki HOTEND_Ki
|
||||
#define DEFAULT_Kd HOTEND_Kd
|
||||
#endif
|
||||
#endif // PIDTEMP
|
||||
|
||||
//===========================================================================
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue