Correct Parameters für "Temperature > PID" settings

Post Reply
DG4EK
Posts: 2
Joined: Mon Jun 03, 2019 10:05 pm

Correct Parameters für "Temperature > PID" settings

Post by DG4EK » Tue Jun 18, 2019 12:00 am

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

User avatar
William
Site Admin
Posts: 6340
Joined: Tue Jun 07, 2016 9:38 am

Re: Correct Parameters für "Temperature > PID" settings

Post by William » Tue Jun 18, 2019 10:12 am

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!

TheG
Posts: 34
Joined: Thu May 09, 2019 3:50 pm

Re: Correct Parameters für "Temperature > PID" settings

Post by TheG » Tue Jun 18, 2019 5:53 pm

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:

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
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:

Code: Select all

M303 E-1 S60 C8

M304 Pxxx.xx Iyyy.yy Dzzz.zz
M500

Hope that helps!

Post Reply