stereotech / Stereotech-Firmware

Modular, opensource, high performance G-code interpreter and CNC controller written in Object-Oriented C++
http://smoothieware.org/
GNU General Public License v3.0
0 stars 1 forks source link

Обновление коэффициентов PID в конфигах принтеров. #8

Closed frylock34 closed 4 years ago

frylock34 commented 4 years ago

In GitLab by @shvetsandrew on May 29, 2020, 10:11

[[TOC]]

Левый экструдер

# PID configuration
temperature_control.hotend.p_factor         25             # P ( proportional ) factor
temperature_control.hotend.i_factor         0.5            # I ( integral ) factor
temperature_control.hotend.d_factor         30             # D ( derivative ) factor

Правый экструдер

temperature_control.hotend2.p_factor        25             # P ( proportional ) factor
temperature_control.hotend2.i_factor        0.5            # I ( integral ) factor
temperature_control.hotend2.d_factor        30             # D ( derivative ) factor

Стол

temperature_control.bed.p_factor            250            # P ( proportional ) factor
temperature_control.bed.i_factor            0.5            # I ( integral ) factor
temperature_control.bed.d_factor            75             # D ( derivative ) factor
frylock34 commented 4 years ago

In GitLab by @frylock34 on May 29, 2020, 10:37

moved from stereotech/steapp/ste-app#24