Advertisement
chainsol

Klipper Configuration for Railcore ZL

May 22nd, 2018
937
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.05 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. # The stepper_x section is used to describe the X axis as well as the
  11. # stepper controlling the X+Y movement.
  12. [stepper_x]
  13. step_pin: ar54
  14. dir_pin: !ar55
  15. enable_pin: !ar38
  16. step_distance: 0.005011
  17. endstop_pin: ^!ar3
  18. position_endstop: 0
  19. position_max: 282
  20. homing_speed: 45
  21.  
  22. [stepper_y]
  23. step_pin: ar46
  24. dir_pin: ar48
  25. enable_pin: !ar62
  26. step_distance: 0.005011
  27. endstop_pin: ^!ar14
  28. position_endstop: 0
  29. position_max: 300
  30. homing_speed: 45
  31.  
  32. [stepper_z]
  33. # Y pins
  34. step_pin: z:ar60
  35. dir_pin: z:ar61
  36. enable_pin: !z:ar56
  37. step_distance: 0.000313
  38. endstop_pin: probe:z_virtual_endstop
  39. position_endstop: 1.0
  40. position_max: 300
  41. position_min: -0.35
  42. homing_speed: 4
  43.  
  44. [stepper_z1]
  45. # X pins
  46. step_pin: z:ar54
  47. dir_pin: z:ar55
  48. enable_pin: !z:ar38
  49. step_distance: 0.000313
  50.  
  51. [stepper_z2]
  52. # Z pins
  53. step_pin: z:ar46
  54. dir_pin: z:ar48
  55. enable_pin: !z:ar62
  56. step_distance: 0.000313
  57.  
  58. [extruder]
  59. step_pin: ar26
  60. dir_pin: ar28
  61. enable_pin: !ar24
  62. step_distance: 0.001150
  63. nozzle_diameter: 0.400
  64. pressure_advance: 0.05
  65. filament_diameter: 1.750
  66. heater_pin: ar10
  67. sensor_type: ATC Semitec 104GT-2
  68. sensor_pin: analog13
  69. control: pid
  70. pid_Kp=16.459
  71. pid_Ki=1.291
  72. pid_Kd=52.465
  73. min_temp: 0
  74. max_temp: 300
  75.  
  76. [heater_bed]
  77. heater_pin: ar8
  78. sensor_type: EPCOS 100K B57560G104F
  79. #sensor_type: NTC 100K beta 3950
  80. sensor_pin: analog14
  81. control: pid
  82. pid_Kp=47.076
  83. pid_Ki=0.659
  84. pid_Kd=840.308
  85. min_temp: 0
  86. max_temp: 130
  87.  
  88. [servo bltouch]
  89. pin: z:ar11
  90. maximum_servo_angle: 180
  91. minimum_pulse_width: 0.0006
  92. maximum_pulse_width: 0.0024
  93.  
  94. [probe]
  95. pin: z:ar19
  96. z_offset: 1.00
  97. activate_gcode:
  98. SET_SERVO SERVO=bltouch ANGLE=10
  99. SET_SERVO SERVO=bltouch ANGLE=60
  100. G4 P200
  101. deactivate_gcode:
  102. SET_SERVO SERVO=bltouch ANGLE=90
  103.  
  104. # If the BLTouch is used to home the Z axis, then define a
  105. # homing_override section, use probe:z_virtual_endstop as the
  106. # endstop_pin in the stepper_z section, and set the endstop_position
  107. # in the stepper_z section to match the probe's z_offset.
  108. [homing_override]
  109. set_position_z: 5
  110. gcode:
  111. G90
  112. G1 Z7 F600
  113. G28 X0 Y0
  114. G1 X150 Y150 F3600
  115. G28 Z0
  116. G1 X0 Y0 F3600
  117.  
  118. [z_tilt]
  119. z_positions:
  120. -56.17,0
  121. -56.17,235
  122. 362.43,103
  123.  
  124. points:
  125. 10,21
  126. 10,210
  127. 282,103
  128. # 10,210
  129. # 10,108
  130. # 10,0
  131. # 150,210
  132. # 150,0
  133. # 280,210
  134. # 280,108
  135. # 280,0
  136. # 150,108
  137.  
  138.  
  139. [fan]
  140. pin: ar9
  141.  
  142. [mcu z]
  143. serial: /dev/serial/by-path/platform-3f980000.usb-usb-0:1.2:1.0-port0
  144. pin_map: arduino
  145.  
  146. [mcu]
  147. serial: /dev/serial/by-path/platform-3f980000.usb-usb-0:1.3:1.0-port0
  148. pin_map: arduino
  149.  
  150. [printer]
  151. kinematics: corexy
  152. max_velocity: 1600
  153. max_accel: 3000
  154. max_z_velocity: 8
  155. max_z_accel: 50
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement