Advertisement
robathome

SampleConfig

Feb 14th, 2018
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. There's a plethora of settings in the configuration.h that could cause or help prevent thermal runaway. Look for these variables, and list their current settings. I'm putting the line number in my config file in angle-brackets, and my recommended values in square brackets.
  2.  
  3. For extruder 0:
  4. <208> EXT0_HEAT_MANAGER [1]
  5. <210> EXT0_WATCHPERIOD [2]
  6. <222> EXT0_PID_INTEGRAL_DRIVE_MAX [130] (120-140 for PLA, 170-190 for ABS)
  7. <230> EXT0_PID_INTEGRAL_DRIVE_MIN [50] (45 to 70, dark magic here)
  8. <232> EXT0_PID_P [24]
  9. <235> EXT0_PID_I [0.88]
  10. <237> EXT0_PID_D [80]
  11. <239> EXT0_PID_MAX [255]
  12.  
  13. For heated bed:
  14. <508> HAVE_HEATED_BED [true] (use "false" if using PLA on blue tape)
  15. <510> HEATED_BED_MAX_TEMP [115]
  16. <512> SKIP_M190_IF_WITHIN [3]
  17. <522> HEATED_BED_SET_INTERVAL [5000]
  18. <530> HEATED_BED_HEAT_MANAGER [1]
  19. <535> HEATED_BED_PID_INTEGRAL_DRIVE_MAX [255]
  20. <543> HEATED_BED_PID_INTEGRAL_DRIVE_MIN [80]
  21. <545> HEATED_BED_PID_P [196]
  22. <547> HEATED_BED_PID_I [33.02]
  23. <549> HEATED_BED_PID_D [290]
  24. <551> HEATED_BED_PID_MAX [255]
  25.  
  26. Configure PID control for all heaters
  27. <554> TEMP_PID [true]
  28. <559> WATCHPERIOD [3000]
  29. <568> MAXTEMP [260]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement