Advertisement
Guest User

bolt_plus

a guest
Feb 20th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.82 KB | None | 0 0
  1. # This file serves as documentation for config parameters of corexy
  2. # style printers. One may copy and edit this file to configure a new
  3. # corexy printer. Only parameters unique to corexy printers are
  4. # described here - see the "example.cfg" file for description of
  5. # common config parameters.
  6.  
  7. # DO NOT COPY THIS FILE WITHOUT CAREFULLY READING AND UPDATING IT
  8. # FIRST. Incorrectly configured parameters may cause damage.
  9.  
  10. #[thermistor thermistor300]
  11. #temperature1: 0
  12. #resistance1: 1008.7
  13. #temperature2: 20
  14. #resistance2: 986.03
  15. #temperature3: 40
  16. #resistance3: 939.52
  17. #temperature4: 60
  18. #resistance4: 857.77
  19. #temperature5: 80
  20. #resistance5: 737.31
  21. #temperature6: 100
  22. #resistance6: 590.61
  23. #temperature7: 120
  24. #resistance7: 447.17
  25. #temperature8: 140
  26. #resistance8: 316.96
  27. #temperature9: 160
  28. #resistance9: 220.72
  29. #temperature10: 170
  30. #resistance10: 182.86
  31. #temperature11: 180
  32. #resistance11: 151.02
  33. #temperature12: 190
  34. #resistance12: 124.46
  35. #temperature13: 200
  36. #resistance13: 102.79
  37. #temperature14: 210
  38. #resistance14: 86.84
  39. #temperature15: 220
  40. #resistance15: 72.03
  41. #temperature16: 230
  42. #resistance16: 60.22
  43. #temperature17: 240
  44. #resistance17: 50.68
  45. #temperature18: 250
  46. #resistance18: 42.75
  47. #temperature19: 260
  48. #resistance19: 36.52
  49. #temperature20: 270
  50. #resistance20: 31.23
  51. #temperature21: 280
  52. #resistance21: 26.71
  53. #temperature22: 290
  54. #resistance22: 23.19
  55. #temperature23: 300
  56. #resistance23: 20.04
  57.  
  58. # The stepper_x section is used to describe the X axis as well as the
  59. # stepper controlling the X+Y movement.
  60. [stepper_x]
  61. step_pin: ar54
  62. dir_pin: !ar55
  63. enable_pin: !ar38
  64. step_distance: .0125
  65. endstop_pin: ^ar2
  66. position_endstop: 0
  67. position_max: 298
  68. homing_speed: 50
  69.  
  70. # The stepper_y section is used to describe the Y axis as well as the
  71. # stepper controlling the X-Y movement.
  72. [stepper_y]
  73. step_pin: ar60
  74. dir_pin: !ar61
  75. enable_pin: !ar56
  76. step_distance: .0125
  77. endstop_pin: ^ar14
  78. position_endstop: 0
  79. position_max: 198
  80. homing_speed: 50
  81.  
  82. [stepper_z]
  83. step_pin: ar46
  84. dir_pin: !ar48
  85. enable_pin: !ar62
  86. step_distance: .00125
  87. endstop_pin: ^ar19
  88. position_endstop: 331
  89. position_max: 332
  90. homing_speed: 20
  91.  
  92. [extruder]
  93. step_pin: ar26
  94. dir_pin: !ar28
  95. enable_pin: !ar24
  96. step_distance: .0098792
  97. nozzle_diameter: 0.400
  98. filament_diameter: 1.750
  99. #pressure_advance: 0.5
  100. heater_pin: ar10
  101. sensor_type: ATC Semitec 104GT-2
  102. sensor_pin: analog13
  103. control: pid
  104. pid_Kp: 22.2
  105. pid_Ki: 1.08
  106. pid_Kd: 114
  107. min_temp: 0
  108. max_temp: 265
  109.  
  110. [heater_bed]
  111. heater_pin: ar8
  112. sensor_type: NTC 100K beta 3950
  113. sensor_pin: analog14
  114. control: pid
  115. pid_Kp: 50.636
  116. pid_Ki: 1.951
  117. pid_Kd: 328.503
  118. min_temp: 0
  119. max_temp: 100
  120.  
  121.  
  122. [fan]
  123. pin: ar9
  124.  
  125. [mcu]
  126. serial: /dev/ttyUSB0
  127. pin_map: arduino
  128.  
  129. [printer]
  130. kinematics: corexy
  131. # This option must be "corexy" for corexy printers.
  132. max_velocity: 180
  133. max_accel: 1500
  134. max_z_velocity: 15
  135. max_z_accel: 30
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement