Skip to content

Commit

Permalink
updated settings
Browse files Browse the repository at this point in the history
  • Loading branch information
delafer committed Aug 22, 2021
1 parent e252cbb commit 24d9f19
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions Marlin/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -584,9 +584,9 @@

// Comment the following line to disable PID and enable bang-bang.
#define PIDTEMP
#define BANG_MAX 245 // Limits current to nozzle while in bang-bang mode; 255=full current
#define BANG_MAX 255 // Limits current to nozzle while in bang-bang mode; 255=full current
#define PID_MAX BANG_MAX // Limits current to nozzle while PID is active (see PID_FUNCTIONAL_RANGE below); 255=full current
#define PID_K1 0.95 // Smoothing factor within any PID loop
#define PID_K1 0.90 // Smoothing factor within any PID loop

#if ENABLED(PIDTEMP)
#define PID_EDIT_MENU // Add PID editing to the "Advanced Settings" menu. (~700 bytes of PROGMEM)
Expand All @@ -597,13 +597,13 @@
#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 { 21.73, 21.73 }
#define DEFAULT_Ki_LIST { 1.54, 1.54 }
#define DEFAULT_Kd_LIST { 76.55, 76.55 }
#define DEFAULT_Kp_LIST { 21.16, 21.16 }
#define DEFAULT_Ki_LIST { 1.32, 1.32 }
#define DEFAULT_Kd_LIST { 84.64, 84.64 }
#else
#define DEFAULT_Kp 45.78
#define DEFAULT_Ki 8.40
#define DEFAULT_Kd 62.39
#define DEFAULT_Kp 21.16
#define DEFAULT_Ki 1.32
#define DEFAULT_Kd 84.64
#endif
#endif // PIDTEMP

Expand Down Expand Up @@ -695,7 +695,7 @@
//#define PID_DEBUG // Sends debug data to the serial port. Use 'M303 D' to toggle activation.
//#define PID_OPENLOOP // Puts PID in open loop. M104/M140 sets the output power from 0 to PID_MAX
//#define SLOW_PWM_HEATERS // PWM with very low frequency (roughly 0.125Hz=8s) and minimum state time of approximately 1s useful for heaters driven by a relay
#define PID_FUNCTIONAL_RANGE 10 // If the temperature difference between the target temperature and the actual temperature
#define PID_FUNCTIONAL_RANGE 50 // If the temperature difference between the target temperature and the actual temperature
// is more than PID_FUNCTIONAL_RANGE then the PID will be shut off and the heater will be set to min/max.
#endif

Expand Down
2 changes: 1 addition & 1 deletion Marlin/Configuration_adv.h
Original file line number Diff line number Diff line change
Expand Up @@ -1452,7 +1452,7 @@
#define LONG_FILENAME_HOST_SUPPORT

// Enable this option to scroll long filenames in the SD card menu
//#define SCROLL_LONG_FILENAMES
#define SCROLL_LONG_FILENAMES

// Leave the heaters on after Stop Print (not recommended!)
//#define SD_ABORT_NO_COOLDOWN
Expand Down

0 comments on commit 24d9f19

Please sign in to comment.