Advertisement
Guest User

Untitled

a guest
Nov 13th, 2024
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.72 KB | None | 0 0
  1. [mcu]
  2. serial: /dev/serial/by-id/usb-Klipper_stm32g0b1xx_27000D000150414235363020-if00
  3. # restart_method: command
  4.  
  5. [fan]
  6. pin: PC6
  7.  
  8. [heater_fan hotend_fan]
  9. pin: PB15
  10. heater: extruder
  11. heater_temp: 50.0
  12.  
  13. [controller_fan electronic_enclosure_fan]
  14. pin: PC7
  15. idle_timeout: 60
  16.  
  17. [display]
  18. lcd_type: st7920
  19. cs_pin: PB8
  20. sclk_pin: PB9
  21. sid_pin: PD6
  22. encoder_pins: ^PA10, ^PA9
  23. click_pin: ^!PA15
  24.  
  25. [output_pin beeper]
  26. pin: PB5
  27.  
  28. [bltouch]
  29. sensor_pin: ^PC14
  30. control_pin: PA1
  31. x_offset: -36
  32. y_offset: 0
  33. z_offset: 2.00
  34.  
  35. [safe_z_home]
  36. home_xy_position: 151,115 # Nozzle coordinates
  37. speed: 250
  38. z_hop: 10
  39. z_hop_speed: 5
  40.  
  41. [stepper_z]
  42. step_pin: PB5
  43. dir_pin: !PB6
  44. enable_pin: !PC3
  45. microsteps: 16
  46. rotation_distance: 8
  47. endstop_pin: probe:z_virtual_endstop
  48. #position_endstop: 0.0
  49. position_min: -4
  50. position_max: 400
  51.  
  52. [stepper_x]
  53. step_pin: PB13
  54. dir_pin: !PB12
  55. enable_pin: !PB14
  56. microsteps: 64
  57. rotation_distance: 40
  58. endstop_pin: ^PC0
  59. position_endstop: 0
  60. position_min: 0
  61. position_max: 400
  62. homing_speed: 50
  63.  
  64. [tmc2209 stepper_x]
  65. uart_pin: PC11
  66. tx_pin: PC10
  67. uart_address: 0
  68. run_current: 0.580
  69. interpolate: False
  70. stealthchop_threshold: 0
  71.  
  72. [stepper_y]
  73. step_pin: PB10
  74. dir_pin: !PB2
  75. enable_pin: !PB11
  76. microsteps: 64
  77. rotation_distance: 40
  78. endstop_pin: ^PC1
  79. position_endstop: -12
  80. position_min: -12
  81. position_max: 400
  82. homing_speed: 50
  83.  
  84. [tmc2209 stepper_y]
  85. uart_pin: PC11
  86. tx_pin: PC10
  87. uart_address: 2
  88. run_current: 0.580
  89. interpolate: False
  90. stealthchop_threshold: 0
  91.  
  92. [stepper_z]
  93. step_pin: PB0
  94. dir_pin: PC5
  95. enable_pin: !PB1
  96. microsteps: 64
  97. rotation_distance: 8
  98. # endstop_pin: ^PC2
  99. # position_endstop: 0.0
  100. endstop_pin: probe:z_virtual_endstop
  101. position_min: -4
  102. position_max: 400
  103.  
  104. [tmc2209 stepper_z]
  105. uart_pin: PC11
  106. tx_pin: PC10
  107. uart_address: 1
  108. run_current: 0.580
  109. interpolate: False
  110. stealthchop_threshold: 0
  111.  
  112. [extruder]
  113. step_pin: PB3
  114. dir_pin: !PB4
  115. enable_pin: !PD1
  116. microsteps: 64
  117. rotation_distance: 7.71
  118. nozzle_diameter: 0.400
  119. filament_diameter: 1.750
  120. max_extrude_only_distance: 100
  121. pressure_advance: 0.04
  122. pressure_advance_smooth_time: 0.040
  123.  
  124. heater_pin: PC8
  125. sensor_type: ATC Semitec 104GT-2
  126. sensor_pin: PA0
  127. control: pid
  128. pid_Kp: 21.527
  129. pid_Ki: 1.063
  130. pid_Kd: 108.982
  131. min_temp: 0
  132. max_temp: 300
  133.  
  134. [tmc2209 extruder]
  135. uart_pin: PC11
  136. tx_pin: PC10
  137. uart_address: 3
  138. run_current: 0.580
  139. interpolate: False
  140. stealthchop_threshold: 0
  141.  
  142. [printer]
  143. kinematics: cartesian
  144. max_velocity: 300
  145. max_accel: 3000
  146. max_z_velocity: 5
  147. max_z_accel: 100
  148.  
  149. [virtual_sdcard]
  150. path: /home/pi/printer_data/gcodes
  151. on_error_gcode: CANCEL_PRINT
  152.  
  153. [board_pins]
  154. aliases:
  155. # EXP1 header
  156. EXP1_1=PB5, EXP1_3=PA9, EXP1_5=PA10, EXP1_7=PB8, EXP1_9=<GND>,
  157. EXP1_2=PA15, EXP1_4=<RST>, EXP1_6=PB9, EXP1_8=PD6, EXP1_10=<5V>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement