Bread_clip

Untitled

Jan 6th, 2026
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.65 KB | None | 0 0
  1. # This file contains common pin mappings for the BIGTREETECH SKR Pico V1.0
  2. # To use this config, the firmware should be compiled for the RP2040 with
  3. # USB communication.
  4.  
  5. # The "make flash" command does not work on the SKR Pico V1.0. Instead,
  6. # after running "make", copy the generated "out/klipper.uf2" file
  7. # to the mass storage device in RP2040 boot mode
  8.  
  9. # See docs/Config_Reference.md for a description of parameters.
  10. [include mainsail.cfg]
  11.  
  12. [exclude_object] # Enable object exclusion
  13.  
  14.  
  15. [gcode_arcs] # Enable arcs support
  16. resolution: 0.1
  17.  
  18.  
  19. [include macros/*.cfg]
  20.  
  21. # Config
  22.  
  23. [virtual_sdcard]
  24. path: ~/printer_1_data/gcodes
  25.  
  26. [stepper_x]
  27. step_pin: gpio11
  28. dir_pin: !gpio10
  29. enable_pin: !gpio12
  30. microsteps: 16
  31. rotation_distance: 40
  32. endstop_pin: ^gpio4
  33. position_endstop: 0
  34. position_max: 235
  35. homing_speed: 50
  36.  
  37. [tmc2209 stepper_x]
  38. uart_pin: gpio9
  39. tx_pin: gpio8
  40. uart_address: 0
  41. run_current: 0.580
  42. stealthchop_threshold: 999999
  43.  
  44. [stepper_y]
  45. step_pin: gpio6
  46. dir_pin: !gpio5
  47. enable_pin: !gpio7
  48. microsteps: 16
  49. rotation_distance: 40
  50. endstop_pin: ^gpio3
  51. position_endstop: 0
  52. position_max: 235
  53. homing_speed: 50
  54.  
  55. [tmc2209 stepper_y]
  56. uart_pin: gpio9
  57. tx_pin: gpio8
  58. uart_address: 2
  59. run_current: 0.580
  60. stealthchop_threshold: 999999
  61.  
  62. [stepper_z]
  63. step_pin: gpio19
  64. dir_pin: gpio28
  65. enable_pin: !gpio2
  66. microsteps: 16
  67. rotation_distance: 8
  68. endstop_pin: ^gpio25
  69. position_endstop: 0.0
  70. position_max: 250
  71.  
  72. [tmc2209 stepper_z]
  73. uart_pin: gpio9
  74. tx_pin: gpio8
  75. uart_address: 1
  76. run_current: 0.580
  77. stealthchop_threshold: 999999
  78.  
  79. [extruder]
  80. step_pin: gpio14
  81. dir_pin: !gpio13
  82. enable_pin: !gpio15
  83. microsteps: 16
  84. rotation_distance: 33.500
  85. nozzle_diameter: 0.400
  86. filament_diameter: 1.750
  87. heater_pin: gpio23
  88. sensor_type: EPCOS 100K B57560G104F
  89. sensor_pin: gpio27
  90. control: pid
  91. pid_Kp: 21.527
  92. pid_Ki: 1.063
  93. pid_Kd: 108.982
  94. min_temp: 0
  95. max_temp: 250
  96.  
  97. [tmc2209 extruder]
  98. uart_pin: gpio9
  99. tx_pin: gpio8
  100. uart_address: 3
  101. run_current: 0.650
  102. stealthchop_threshold: 999999
  103.  
  104. [heater_bed]
  105. heater_pin: gpio21
  106. sensor_type: ATC Semitec 104GT-2
  107. sensor_pin: gpio26
  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. [fan]
  116. pin: gpio17
  117.  
  118. [heater_fan heatbreak_cooling_fan]
  119. pin: gpio18
  120.  
  121. [heater_fan controller_fan]
  122. pin: gpio20
  123.  
  124. [temperature_sensor pico]
  125. sensor_type: temperature_mcu
  126.  
  127. [mcu]
  128. serial: /dev/ttyACM0
  129.  
  130. [printer]
  131. kinematics: cartesian
  132. max_velocity: 300
  133. max_accel: 3000
  134. max_z_velocity: 5
  135. max_z_accel: 100
  136.  
  137. [neopixel board_neopixel]
  138. pin: gpio24
  139. chain_count: 1
  140. color_order: GRB
  141. initial_RED: 0.3
  142. initial_GREEN: 0.3
  143. initial_BLUE: 0.3
  144.  
  145.  
  146. #[filament_switch_sensor runout_sensor]
  147. #switch_pin: ^gpio16
Advertisement
Add Comment
Please, Sign In to add comment