Browse Source

Clarify which PID values to enter

Users can be confused as to which values to enter after a PID tune. Updating the message to help clarity it.
New message: "PID Autotune finished! Put the last Kp, Ki and Kd constants from above into Configuration.h"

Old message: "PID Autotune finished! Put the Kp, Ki and Kd constants into Configuration.h"
RoyOnWheels 10 years ago
parent
commit
aee63afccd
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/temperature.cpp

+ 1
- 1
Marlin/temperature.cpp View File

@@ -304,7 +304,7 @@ void PID_autotune(float temp, int extruder, int ncycles)
304 304
       return;
305 305
     }
306 306
     if(cycles > ncycles) {
307
-      SERIAL_PROTOCOLLNPGM("PID Autotune finished! Put the Kp, Ki and Kd constants into Configuration.h");
307
+      SERIAL_PROTOCOLLNPGM("PID Autotune finished! Put the last Kp, Ki and Kd constants from above into Configuration.h");
308 308
       return;
309 309
     }
310 310
     lcd_update();

Loading…
Cancel
Save