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
       return;
304
       return;
305
     }
305
     }
306
     if(cycles > ncycles) {
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
       return;
308
       return;
309
     }
309
     }
310
     lcd_update();
310
     lcd_update();

Loading…
Cancel
Save