Advertisement
Guest User

ffs

a guest
Sep 21st, 2019
407
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.88 KB | None | 0 0
  1. #Fucking work you damn K200
  2.  
  3. [stepper_a]
  4. step_pin: ar54
  5. dir_pin: ar55
  6. enable_pin: !ar38
  7. step_distance: .0125
  8. endstop_pin: ^!ar2
  9. position_endstop: 275
  10. arm_length: 218.0
  11. homing_speed: 50
  12.  
  13. [stepper_b]
  14. step_pin: ar60
  15. dir_pin: ar61
  16. enable_pin: !ar56
  17. step_distance: .0125
  18. endstop_pin: ^!ar15
  19.  
  20.  
  21. [stepper_c]
  22. step_pin: ar46
  23. dir_pin: ar48
  24. enable_pin: !ar62
  25. step_distance: .0125
  26. endstop_pin: ^!ar19
  27.  
  28.  
  29. [extruder]
  30. step_pin: ar26
  31. dir_pin: !ar28
  32. enable_pin: !ar24
  33. step_distance: 0.00251
  34. nozzle_diameter: 0.800
  35. filament_diameter: 1.750
  36. heater_pin: ar10
  37. sensor_type: NTC 100K beta 3950
  38. sensor_pin: analog13
  39. control: pid
  40. pid_Kp: 27.960
  41. pid_Ki: 1.607
  42. pid_Kd: 121.627
  43. min_temp: 0
  44. max_temp: 265
  45. #max_extrude_only_distance: 110.0
  46.  
  47.  
  48. [heater_bed]
  49. heater_pin: ar8
  50. sensor_type: EPCOS 100K B57560G104F
  51. sensor_pin: analog14
  52. min_temp: 0
  53. max_temp: 110
  54. control = pid
  55. pid_kp = 73.921
  56. pid_ki = 1.805
  57. pid_kd = 756.767
  58.  
  59. # Heater cooling fans (one may define any number of sections with a
  60. # "heater_fan" prefix). A "heater fan" is a fan that will be enabled
  61. # whenever its associated heater is active. By default, a heater_fan
  62. # has a shutdown_speed equal to max_power.
  63.  
  64. # Print cooling fan (omit section if fan not present).
  65. [fan]
  66. pin: ar9
  67. kick_start_time: 0.200
  68.  
  69. [mcu]
  70. serial: /dev/ttyUSB0
  71. #serial: /dev/ttyACM0
  72. #serial: /dev/serial/by-id/usb-1a86_USB2.0-Serial-if00-0-port0
  73. pin_map: arduino
  74. #baud: 115200
  75.  
  76. [endstop_phase]
  77.  
  78. [printer]
  79. kinematics: delta
  80. # This option must be "delta" for linear delta printers.
  81. max_velocity: 150
  82. # Maximum velocity (in mm/s) of the toolhead relative to the
  83. # print. This parameter must be specified.
  84. max_accel: 3000
  85. # Maximum acceleration (in mm/s^2) of the toolhead relative to the
  86. # print. This parameter must be specified.
  87. max_z_velocity: 150
  88. # For delta printers this limits the maximum velocity (in mm/s) of
  89. # moves with z axis movement. This setting can be used to reduce the
  90. # maximum speed of up/down moves (which require a higher step rate
  91. # than other moves on a delta printer). The default is to use
  92. # max_velocity for max_z_velocity.
  93. minimum_z_position: -20
  94. # The minimum Z position that the user may command the head to move
  95. # to. The default is 0.
  96. delta_radius: 130
  97. # Radius (in mm) of the horizontal circle formed by the three linear
  98. # axis towers. This parameter may also be calculated as:
  99. # delta_radius = smooth_rod_offset - effector_offset - carriage_offset
  100. # This parameter must be provided.
  101.  
  102. # The delta_calibrate section enables a DELTA_CALIBRATE extended
  103. # g-code command that can calibrate the tower endstop positions and
  104. # angles.
  105.  
  106. [delta_calibrate]
  107. radius: 75
  108. # Radius (in mm) of the area that may be probed. This is the radius
  109. # of nozzle coordinates to be probed; if using an automatic probe
  110. # with an XY offset then choose a radius small enough so that the
  111. # probe always fits over the bed. This parameter must be provided.
  112. speed: 50
  113. # The speed (in mm/s) of non-probing moves during the calibration.
  114. # The default is 50.
  115. horizontal_move_z: 5
  116. # The height (in mm) that the head should be commanded to move to
  117. # just prior to starting a probe operation. The default is 5.
  118.  
  119. [idle_timeout]
  120. timeout: 360
  121.  
  122.  
  123. ########################################
  124. # Optional LCD configuration
  125. ########################################
  126.  
  127. [display]
  128. lcd_type: hd44780
  129. rs_pin: ar16
  130. e_pin: ar17
  131. d4_pin: ar23
  132. d5_pin: ar25
  133. d6_pin: ar27
  134. d7_pin: ar29
  135. encoder_pins: ^ar31, ^ar33
  136. click_pin: ^!ar35
  137. kill_pin: ^!ar41
  138.  
  139. [virtual_sdcard]
  140. path: ~/.octoprint/uploads/
  141.  
  142.  
  143. #### start of menu customization ####
  144. [menu __temp __preheat_pla]
  145. type: list
  146. name: Preheat PLA
  147. items:
  148. .__all
  149. .__hotend
  150. .__hotbed
  151.  
  152. [menu __temp __preheat_pla __all]
  153. type: command
  154. enable: extruder0.is_enabled,heater_bed.is_enabled
  155. name: Preheat all
  156. gcode:
  157. M140 S55
  158. M104 S215
  159.  
  160. [menu __temp __preheat_pla __hotend]
  161. type: command
  162. enable: extruder0.is_enabled
  163. name: Preheat hotend
  164. gcode: M104 S215
  165.  
  166. [menu __temp __preheat_pla __hotbed]
  167. type: command
  168. enable: heater_bed.is_enabled
  169. name: Preheat hotbed
  170. gcode: M140 S55
  171.  
  172.  
  173. ### menu filament ###
  174.  
  175. [menu __filament]
  176. type: list
  177. name: Filament
  178. items:
  179. __temp __hotend0_current, __temp __hotend0_target
  180. .__unload
  181. .__load
  182. .__feed
  183.  
  184. [menu __filament __load]
  185. type: command
  186. name: Load Filament
  187. gcode:
  188. M83
  189. G1 E50 F1000
  190. G1 E150 F1000
  191. G1 E150 F1000
  192. G1 E150 F1000
  193. G1 E50 F300
  194. G1 E50 F300
  195. M82
  196.  
  197. [menu __filament __unload]
  198. type: command
  199. name: Unload Filament
  200. gcode:
  201. M83
  202. G1 E-150 F1000
  203. G1 E-150 F1000
  204. G1 E-100 F1000
  205. G1 E-150 F1800
  206. G1 E-100 F1800
  207. G1 E-50 F1800
  208. M82
  209.  
  210. [menu __filament __feed]
  211. type: input
  212. name: Feed Filament: {0:.1f}
  213. parameter: toolhead.epos
  214. input_step: 0.1
  215. gcode: G1 E{0:.1f} F30
  216.  
  217. ### End of menu customization
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement