Hi all,
Does anybody know the correct parameters for "P.I.D." and "Factor" settings
at the Marlin 1.1.8 LCD ?
Thank you very much
Correct Parameters für "Temperature > PID" settings
Re: Correct Parameters für "Temperature > PID" settings
Hi,You can view it in the control-temperature of lcd.
-Keep your mind and try to test it.
-Everything will be fun!-Support all Getech printer.
-You can ask me the questions and I will kindly reply.
-Respect others is the best way you can get help!
-Everything will be fun!-Support all Getech printer.
-You can ask me the questions and I will kindly reply.
-Respect others is the best way you can get help!
Re: Correct Parameters für "Temperature > PID" settings
Hi!
@William: I'm not sure that was the question
@DG4EK:
Marlin is capable of auto-tuning the PID settings to let you know what you need to set. You can do as follows:
1. This GCODE will run 8 measurement cycles on extruder 0 with a temperature of 230°C. When it is done, you'll get output consisting of the values for Kp, Ki and Kd:
2. Now that you know the values, you can set them. Replace x, y and z with the values you got from the above command for KP, KI, and KD:
3. If PID for the bed is activated, you can also calibrate that with those commands to get the value and set them, just as above for the extruder. Make sure "E-1" really is heating up your hotbed:
Hope that helps!
@William: I'm not sure that was the question
@DG4EK:
Marlin is capable of auto-tuning the PID settings to let you know what you need to set. You can do as follows:
1. This GCODE will run 8 measurement cycles on extruder 0 with a temperature of 230°C. When it is done, you'll get output consisting of the values for Kp, Ki and Kd:
Code: Select all
M106
M303 E-0 S230 C8
2. Now that you know the values, you can set them. Replace x, y and z with the values you got from the above command for KP, KI, and KD:
Code: Select all
M301 Pxx.x Iyy.y Dzz.z
M500
Code: Select all
M303 E-1 S60 C8
M304 Pxxx.xx Iyyy.yy Dzzz.zz
M500
Hope that helps!