Advertisement
robathome

SKR_KlipperConfig_v0-1

Jun 14th, 2019
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.98 KB | None | 0 0
  1. ____ _____ __ ____ __
  2. | __ \| ____\ \ / /\ \ / /
  3. | | | | |__ \ \ /\ / / \ \_/ /
  4. | | | | __| \ \/ \/ / \ /
  5. | |__| | | \ /\ / | |
  6. |_____/|_| \/ \/ |_|
  7.  
  8.  
  9. ##########################
  10. ## Motion configuration ##
  11. ##########################
  12.  
  13. [stepper_x]
  14. step_pin: P2.2
  15. dir_pin: !P2.6
  16. enable_pin: !P2.1
  17. step_distance: .05
  18. endstop_pin: P1.29
  19. position_endstop: 0
  20. position_max: 230
  21. homing_speed: 50
  22. homing_retract_dist: 2.5
  23. second_homing_speed: 10
  24.  
  25. [stepper_y]
  26. step_pin: P0.19
  27. dir_pin: !P0.20
  28. enable_pin: !P2.8
  29. step_distance: .05
  30. endstop_pin: P1.27
  31. position_endstop: 210
  32. position_max: 210
  33. homing_speed: 50
  34. homing_retract_dist: 2.5
  35. second_homing_speed: 10
  36.  
  37. [stepper_z]
  38. step_pin: P0.22
  39. dir_pin: P2.11
  40. enable_pin: !P0.21
  41. step_distance: .01
  42. endstop_pin: P1.25
  43. position_endstop: 0.25
  44. position_max: 220
  45. homing_speed: 10
  46. homing_retract_dist: 2.5
  47. second_homing_speed: 5
  48.  
  49. ###########################
  50. ## TMC2208 configuration ##
  51. ###########################
  52.  
  53. [tmc2208 stepper_x]
  54. uart_pin: P1.17
  55. microsteps: 4
  56. run_current: 0.800
  57. hold_current: 0.500
  58. stealthchop_threshold: 250
  59.  
  60. [tmc2208 stepper_y]
  61. uart_pin: P1.15
  62. microsteps: 4
  63. run_current: 0.850
  64. hold_current: 0.500
  65. stealthchop_threshold: 250
  66.  
  67. [tmc2208 stepper_z]
  68. uart_pin: P1.10
  69. microsteps: 4
  70. run_current: 0.650
  71. hold_current: 0.450
  72. stealthchop_threshold: 30
  73.  
  74. [tmc2208 extruder]
  75. uart_pin: P1.8
  76. microsteps: 4
  77. run_current: 0.800
  78. hold_current: 0.500
  79. stealthchop_threshold: 5
  80.  
  81. ############################
  82. ## Extruder configuration ##
  83. ############################
  84.  
  85. [extruder]
  86. step_pin: P2.13
  87. dir_pin: !P0.11
  88. enable_pin: !P2.12
  89. step_distance: .041378
  90. nozzle_diameter: 0.300
  91. filament_diameter: 1.670
  92. heater_pin: P2.7
  93. sensor_type: EPCOS 100K B57560G104F
  94. sensor_pin: P0.24
  95. control: pid
  96. pid_Kp: 18.28
  97. pid_Ki: 1.28
  98. pid_Kd: 65.48
  99. min_temp: 25
  100. max_temp: 280
  101.  
  102. [heater_bed]
  103. heater_pin: P2.5
  104. sensor_type: EPCOS 100K B57560G104F
  105. sensor_pin: P0.23
  106. control: pid
  107. pid_Kp: 54.027
  108. pid_Ki: 0.770
  109. pid_Kd: 948.182
  110. min_temp: 0
  111. max_temp: 130
  112.  
  113. ##############################
  114. ## Peripheral configuration ##
  115. ##############################
  116.  
  117. [fan]
  118. pin: P2.3
  119. max_power: 1.0
  120. #cycle_time: 0.05
  121. #kick_start_time: 0.1
  122.  
  123. [mcu]
  124. serial: /dev/serial/by-id/usb-Klipper_Klipper_firmware_12345-if00
  125.  
  126. [printer]
  127. kinematics: cartesian
  128. max_velocity: 200
  129. max_accel: 5000
  130. max_accel_to_decel: 4000
  131. square_corner_velocity: 6
  132. max_z_velocity: 60
  133. max_z_accel: 2000
  134.  
  135. [homing_override]
  136. set_position_z: 5
  137. gcode: G1 Z10 F500
  138. G28
  139. axes: z
  140.  
  141. [virtual_sdcard]
  142. path: ~/.octoprint/uploads/
  143.  
  144. [force_move]
  145. enable_force_move: True
  146.  
  147. ###############################
  148. ## Waiting to be implemented ##
  149. ###############################
  150.  
  151. # 128x64 Full Graphic Creality CR10 / ENDER 3 stockdisplay
  152. #[display]
  153. #lcd_type: st7920
  154. #cs_pin: P1.19
  155. #sclk_pin: P1.21
  156. #sid_pin: P1.23
  157. #encoder_pins: ^P1.18, ^P1.20
  158. #click_pin: !P0.28
  159. #
  160. #[output_pin beeper]
  161. #pin: P1.30
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement