Skip to content

Commit 52f0a61

Browse files
committed
clarify, maybe
1 parent dbe76e8 commit 52f0a61

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Marlin/Configuration.h

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,8 @@
696696
#define PID_K1 0.95 // Smoothing factor within any PID loop
697697

698698
#if ENABLED(PIDTEMP)
699-
//#define MIN_POWER 0 // (0 to PID_MAX) For better PID stability, set to the value from M105 times 2 minus 10 to 20.
699+
//#define MIN_POWER 0 // Min power to improve PID stability (0..PID_MAX).
700+
// Get the power from the temperature report ('M105' => @:nnn) and try P*2-20 to P*2-10.
700701
//#define PID_DEBUG // Print PID debug data to the serial port. Use 'M303 D' to toggle activation.
701702
//#define PID_PARAMS_PER_HOTEND // Use separate PID parameters for each extruder (useful for mismatched extruders)
702703
// Set/get with G-code: M301 E[extruder number, 0-2]
@@ -796,7 +797,8 @@
796797
//#define PIDTEMPBED
797798

798799
#if ENABLED(PIDTEMPBED)
799-
//#define MIN_BED_POWER 0 // (0 to MAX_BED_POWER) For better PID stability, set to the value from M105 times 2 minus 10 to 20.
800+
//#define MIN_BED_POWER 0 // Min power to improve PID stability (0..MAX_BED_POWER).
801+
// Get the power from the temperature report ('M105' => B@:nnn) and try P*2-20 to P*2-10.
800802
//#define PID_BED_DEBUG // Print Bed PID debug data to the serial port.
801803

802804
// 120V 250W silicone heater into 4mm borosilicate (MendelMax 1.5+)
@@ -878,7 +880,8 @@
878880
#define MAX_CHAMBER_POWER 255 // limits duty cycle to chamber heater; 255=full current
879881

880882
#if ENABLED(PIDTEMPCHAMBER)
881-
#define MIN_CHAMBER_POWER 0 // (0 to MAX_BED_POWER) For better PID stability, set to the value from M105 times 2 minus 10 to 20.
883+
#define MIN_CHAMBER_POWER 0 // Min power to improve PID stability. (0..MAX_CHAMBER_POWER)
884+
// Get the power from the temperature report ('M105' => C@:nnn) and try P*2-20 to P*2-10.
882885
//#define PID_CHAMBER_DEBUG // Print Chamber PID debug data to the serial port.
883886

884887
// Lasko "MyHeat Personal Heater" (200w) modified with a Fotek SSR-10DA to control only the heating element

0 commit comments

Comments
 (0)