Quellcode durchsuchen

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 vor 10 Jahren
Ursprung
Commit
aee63afccd
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1
    1
      Marlin/temperature.cpp

+ 1
- 1
Marlin/temperature.cpp Datei anzeigen

@@ -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();

Laden…
Abbrechen
Speichern