Advertisement
Guest User

klipper e3d 20012020

a guest
Jan 20th, 2020
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.06 KB | None | 0 0
  1. ##########################
  2. ## Motion configuration ##
  3. ##########################
  4.  
  5. [stepper_x]
  6. step_pin: P2.2
  7. dir_pin: !P2.6
  8. enable_pin: !P2.1
  9. step_distance: .05
  10. endstop_pin: P1.29
  11. position_endstop: 0
  12. position_max: 230
  13. homing_speed: 30
  14. homing_retract_dist: 2.5
  15. second_homing_speed: 10
  16.  
  17. [stepper_y]
  18. step_pin: P0.19
  19. dir_pin: !P0.20
  20. enable_pin: !P2.8
  21. step_distance: .05
  22. endstop_pin: ^P1.26
  23. position_endstop: 1.0
  24. position_max: 230
  25. homing_speed: 30
  26. homing_retract_dist: 2.5
  27. second_homing_speed: 10
  28.  
  29. [stepper_z]
  30. step_pin: P0.22
  31. dir_pin:P2.11
  32. enable_pin: !P0.21
  33. step_distance: .01
  34. endstop_pin: P1.25
  35. position_endstop: 0
  36. position_max: 240
  37. position_min: -2
  38. homing_speed: 5
  39. homing_retract_dist: 2.5
  40. second_homing_speed: 5
  41.  
  42. ###########################
  43. ## TMC2208 configuration ##
  44. ###########################
  45.  
  46. [tmc2208 stepper_x]
  47. uart_pin: P1.17
  48. microsteps: 4
  49. interpolate: True
  50. run_current: 0.800
  51. hold_current: 0.500
  52. stealthchop_threshold: 2000
  53.  
  54. [tmc2208 stepper_y]
  55. uart_pin: P1.15
  56. microsteps: 4
  57. interpolate: True
  58. run_current: 0.850
  59. hold_current: 0.500
  60. stealthchop_threshold: 250
  61.  
  62. [tmc2208 stepper_z]
  63. uart_pin: P1.10
  64. microsteps: 4
  65. interpolate: True
  66. run_current: 0.650
  67. hold_current: 0.450
  68. stealthchop_threshold: 30
  69.  
  70. [tmc2208 extruder]
  71. uart_pin: P1.8
  72. microsteps: 4
  73. interpolate: False
  74. run_current: 0.6
  75. hold_current: 0.3
  76. stealthchop_threshold: 5
  77.  
  78. ############################
  79. ## Extruder configuration ##
  80. ############################
  81.  
  82. [extruder]
  83. step_pin: P2.13
  84. dir_pin: !P0.11
  85. enable_pin: !P2.12
  86. step_distance: 0.028309734
  87. nozzle_diameter: 0.4
  88. filament_diameter: 1.7
  89. #max_extrude_cross_section: 2.0
  90. heater_pin: P2.7
  91. max_power: 1.00
  92. smooth_time: 1.0
  93. sensor_type: EPCOS 100K B57560G104F
  94. sensor_pin: P0.24
  95. pressure_advance_smooth_time: 0.05
  96. control: pid
  97. pid_Kp: 18.28
  98. pid_Ki: 1.28
  99. pid_Kd: 65.48
  100. min_temp: -5
  101. max_temp: 280
  102. max_extrude_only_distance: 100
  103.  
  104. [heater_bed]
  105. heater_pin: P2.5
  106. sensor_type: EPCOS 100K B57560G104F
  107. sensor_pin: P0.23
  108. control: pid
  109. pid_Kp: 54.027
  110. pid_Ki: 0.770
  111. pid_Kd: 948.182
  112. min_temp: 0
  113. max_temp: 130
  114.  
  115. ##############################
  116. ## Peripheral configuration ##
  117. ##############################
  118.  
  119. [fan]
  120. pin: P2.3
  121. max_power: 1.0
  122. #cycle_time: 0.05
  123. #kick_start_time: 0.1
  124.  
  125. [heater_fan hotend_fan]
  126. pin: P2.4
  127. heater: extruder
  128. heater_temp:50.0
  129.  
  130. [mcu]
  131. serial: /dev/serial/by-path/platform-3f980000.usb-usb-0:1.3:1.0
  132. baud: 250000
  133.  
  134. [printer]
  135. kinematics: cartesian
  136. max_velocity: 250
  137. max_accel: 4000
  138. max_accel_to_decel: 500
  139. square_corner_velocity: 4
  140. max_z_velocity: 60
  141. max_z_accel: 2000
  142.  
  143. [homing_override]
  144. set_position_z: 5
  145. gcode: G1 Z10 F500
  146. G28
  147. G1 Z10 F500
  148. axes: z
  149.  
  150. [virtual_sdcard]
  151. path: ~/.octoprint/uploads/
  152.  
  153. [force_move]
  154. enable_force_move: True
  155.  
  156. [display]
  157. lcd_type: st7920
  158. cs_pin: P1.19
  159. sclk_pin: P1.21
  160. sid_pin: P1.23
  161. encoder_pins: ^P1.18, ^P1.20
  162. click_pin: !P0.28
  163.  
  164. [output_pin beeper]
  165. pin: P1.30
  166.  
  167. [pause_resume]
  168. recover_velocity: 30
  169.  
  170. #[firmware_retraction]
  171. #retract_length: 4
  172. #retract_speed: 30
  173. #unretract_extra_length: -0.05
  174. #unretract_speed: 25
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement