Guest User

Untitled

a guest
Dec 5th, 2023
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.50 KB | None | 0 0
  1. [include fluidd.cfg]
  2. [include mainsail.cfg]
  3. [include macros.cfg]
  4. [virtual_sdcard]
  5.  
  6. path: /home/ben/printer_data/gcodes
  7. on_error_gcode: CANCEL_PRINT
  8.  
  9.  
  10. [force_move]
  11. enable_force_move: True
  12.  
  13. [mcu]
  14. ;serial: /dev/serial/by-id/usb-Klipper_lpc1768_12345-if00
  15. serial: /dev/serial/by-id/usb-Klipper_stm32f103xe_30FFD7054246303740682557-if00
  16.  
  17. [printer]
  18. kinematics: corexy
  19. max_velocity: 300
  20. max_accel: 3000
  21. max_z_velocity: 25
  22. max_z_accel: 50
  23. square_corner_velocity: 5
  24.  
  25. [stepper_x]
  26. step_pin: PB13
  27. dir_pin: !PB12
  28. enable_pin: !PB14
  29. microsteps: 16
  30. rotation_distance: 40
  31. endstop_pin: !PC0
  32. position_endstop: 0
  33. position_min: -10
  34. position_max: 290
  35. homing_speed: 100
  36. homing_retract_dist: 5
  37.  
  38. [tmc2209 stepper_x]
  39. uart_pin: PB15
  40. run_current: 0.580
  41. stealthchop_threshold: 500
  42.  
  43. [stepper_y]
  44. step_pin: PB10
  45. dir_pin: !PB2
  46. enable_pin: !PB11
  47. microsteps: 16
  48. rotation_distance: 40
  49. endstop_pin: !PC1
  50. position_endstop: 290
  51. position_max: 290
  52. position_min: -10
  53. homing_speed: 100
  54. homing_retract_dist: 5
  55.  
  56. [tmc2209 stepper_y]
  57. uart_pin: PC6
  58. run_current: 0.580
  59. stealthchop_threshold: 500
  60.  
  61. [stepper_z]
  62. step_pin: PB0
  63. dir_pin: PC5
  64. enable_pin: !PB1
  65. microsteps: 16
  66. rotation_distance: 8
  67. endstop_pin: probe:z_virtual_endstop
  68. position_max: 350
  69. position_min: -6
  70. homing_speed: 25
  71. second_homing_speed: 5
  72.  
  73. [tmc2209 stepper_z]
  74. uart_pin: PC10
  75. run_current: 0.650
  76. stealthchop_threshold: 500
  77.  
  78. [extruder]
  79. step_pin: PB3
  80. dir_pin: !PB4
  81. enable_pin: !PD2
  82. microsteps: 16
  83. ;rotation_distance: 3.4334
  84. rotation_distance: 7.793 ; for Red Filament
  85. nozzle_diameter: 0.400
  86. filament_diameter: 1.750
  87. heater_pin: PC8
  88. sensor_type: EPCOS 100K B57560G104F
  89. sensor_pin: PA0
  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: 300
  96. min_extrude_temp: 150
  97. max_extrude_cross_section: 10
  98. pressure_advance: 0.025
  99. pressure_advance_smooth_time: 0.1
  100. smooth_time: 0.1
  101. max_extrude_only_velocity: 40 # Lower this to reduce retraction speed
  102. max_extrude_only_accel: 500 # Lower this to reduce retraction acceleration
  103. max_extrude_only_distance: 110
  104.  
  105. [tmc2209 extruder]
  106. uart_pin: PC11
  107. run_current: 0.850
  108. hold_current: 0.500
  109. stealthchop_threshold: 500
  110.  
  111. [heater_bed]
  112. heater_pin: PC9
  113. sensor_type: ATC Semitec 104GT-2
  114. sensor_pin: PC3
  115. control: pid
  116. pid_Kp: 54.027
  117. pid_Ki: 0.770
  118. pid_Kd: 948.182
  119. min_temp: 0
  120. max_temp: 130
  121.  
  122. [fan]
  123. pin: PA8
  124.  
  125. [static_digital_output usb_pullup_enable]
  126. pins: !PC13
  127.  
  128. [bltouch]
  129. sensor_pin: ^PC14
  130. control_pin: PA1
  131. pin_up_touch_mode_reports_triggered: False
  132. pin_up_reports_not_triggered: True
  133. x_offset: 0
  134. y_offset: -43
  135. #z_offset: 2
  136. pin_move_time: 1
  137. stow_on_each_sample: True
  138. samples: 2
  139. samples_result: average
  140. sample_retract_dist: 3
  141. samples_tolerance: 0.3
  142. samples_tolerance_retries: 5
  143.  
  144. # Bed Leveling: https://www.klipper3d.org/Bed_Level.html#determining-thermal-expansion
  145. [bed_mesh]
  146. speed: 200
  147. horizontal_move_z: 5
  148. mesh_min: 10,0
  149. mesh_max: 280,247 # Make sure X,Y here meets these conditions (X+(bltouch+x_offset) < bed X) and (Y+(bltouch+y_offset) < Bed Y) full length measured X=239.5 and Y=224.55
  150. probe_count: 12, 12
  151. mesh_pps: 3, 3
  152. algorithm: bicubic
  153. bicubic_tension: 0.2
  154. fade_start: 1
  155. fade_end: 10
  156. fade_target: 0
  157.  
  158.  
  159. [safe_z_home]
  160. home_xy_position: 155, 155 # Change coordinates to the center of your print bed
  161. speed: 120
  162. z_hop: 10 # Move up 10mm
  163. z_hop_speed: 5
  164.  
  165.  
  166. [board_pins]
  167. aliases:
  168. # EXP1 header
  169. EXP1_1=PB5, EXP1_3=PA9, EXP1_5=PA10, EXP1_7=PB8, EXP1_9=<GND>,
  170. EXP1_2=PB6, EXP1_4=<RST>, EXP1_6=PB9, EXP1_8=PB7, EXP1_10=<5V>
  171.  
  172.  
  173.  
  174. # See the sample-lcd.cfg file for definitions of common LCD displays.
  175.  
  176. #*# <---------------------- SAVE_CONFIG ---------------------->
  177. #*# DO NOT EDIT THIS BLOCK OR BELOW. The contents are auto-generated.
  178. #*#
  179. #*# [bltouch]
  180. #*# z_offset = 1.174
  181. #*#
  182. #*# [bed_mesh default]
  183. #*# version = 1
  184. #*# points =
  185. #*# -0.101250, 0.025000, 0.095000, 0.135000, 0.202500, 0.196250, 0.192500, 0.157500, 0.161250, 0.090000, -0.017500, -0.123750
  186. #*# -0.108750, -0.053750, -0.003750, 0.067500, 0.153750, 0.215000, 0.117500, 0.122500, 0.153750, 0.093750, -0.032500, -0.136250
  187. #*# -0.217500, -0.096250, -0.063750, 0.056250, 0.071250, 0.121250, 0.122500, 0.105000, 0.092500, 0.037500, -0.051250, -0.087500
  188. #*# -0.238750, -0.201250, -0.103750, -0.005000, 0.076250, 0.062500, 0.060000, 0.093750, 0.123750, -0.028750, -0.066250, -0.127500
  189. #*# -0.261250, -0.247500, -0.135000, -0.057500, -0.028750, 0.013750, 0.020000, 0.020000, -0.018750, -0.072500, -0.067500, -0.217500
  190. #*# -0.296250, -0.268750, -0.195000, -0.082500, -0.012500, 0.023750, 0.036250, 0.003750, -0.041250, -0.083750, -0.166250, -0.218750
  191. #*# -0.383750, -0.307500, -0.173750, -0.038750, -0.002500, 0.023750, -0.027500, 0.050000, -0.058750, -0.135000, -0.160000, -0.265000
  192. #*# -0.331250, -0.217500, -0.161250, 0.018750, 0.043750, 0.116250, 0.046250, -0.002500, -0.017500, -0.078750, -0.150000, -0.251250
  193. #*# -0.300000, -0.221250, -0.097500, -0.008750, 0.071250, 0.087500, -0.010000, -0.016250, 0.016250, -0.035000, -0.082500, -0.188750
  194. #*# -0.317500, -0.192500, -0.001250, 0.022500, 0.085000, 0.048750, 0.076250, 0.036250, -0.002500, 0.013750, -0.078750, -0.182500
  195. #*# -0.271250, -0.115000, -0.031250, 0.075000, 0.113750, 0.073750, 0.061250, 0.012500, 0.031250, -0.008750, -0.051250, -0.112500
  196. #*# -0.198750, -0.017500, 0.080000, 0.138750, 0.131250, 0.192500, 0.168750, 0.120000, 0.095000, 0.107500, -0.010000, -0.012500
  197. #*# x_count = 12
  198. #*# y_count = 12
  199. #*# mesh_x_pps = 3
  200. #*# mesh_y_pps = 3
  201. #*# algo = bicubic
  202. #*# tension = 0.2
  203. #*# min_x = 10.0
  204. #*# max_x = 279.94
  205. #*# min_y = 0.0
  206. #*# max_y = 246.95
  207. #*#
  208. #*# [bed_mesh MESH]
  209. #*# version = 1
  210. #*# points =
  211. #*# -0.186250, 0.016250, 0.036250, 0.138750, -0.298750
  212. #*# -0.545000, -0.186250, -0.180000, -0.102500, -0.292500
  213. #*# -0.506250, -0.272500, -0.252500, -0.108750, -0.691250
  214. #*# -0.556250, -0.343750, -0.060000, -0.166250, -0.813750
  215. #*# -0.650000, -0.455000, -0.401250, -0.143750, -0.685000
  216. #*# x_count = 5
  217. #*# y_count = 5
  218. #*# mesh_x_pps = 3
  219. #*# mesh_y_pps = 3
  220. #*# algo = bicubic
  221. #*# tension = 0.2
  222. #*# min_x = 10.0
  223. #*# max_x = 280.0
  224. #*# min_y = 10.0
  225. #*# max_y = 247.0
  226. #*#
  227. #*# [bed_mesh mesh2]
  228. #*# version = 1
  229. #*# points =
  230. #*# 0.077500, 0.153750, 0.235000, 0.387500, 0.336250, 0.281250, 0.208750
  231. #*# -0.203750, -0.001250, 0.090000, 0.176250, 0.160000, 0.172500, 0.056250
  232. #*# -0.360000, -0.193750, -0.011250, 0.083750, 0.020000, -0.006250, -0.042500
  233. #*# -0.505000, -0.278750, -0.085000, 0.017500, -0.070000, -0.031250, -0.221250
  234. #*# -0.423750, -0.220000, -0.105000, -0.058750, -0.027500, -0.075000, -0.211250
  235. #*# -0.387500, -0.196250, -0.072500, 0.002500, 0.010000, 0.008750, -0.115000
  236. #*# -0.283750, -0.010000, -0.007500, 0.136250, 0.137500, 0.085000, 0.056250
  237. #*# x_count = 7
  238. #*# y_count = 7
  239. #*# mesh_x_pps = 3
  240. #*# mesh_y_pps = 3
  241. #*# algo = bicubic
  242. #*# tension = 0.2
  243. #*# min_x = 10.0
  244. #*# max_x = 280.0
  245. #*# min_y = 10.0
  246. #*# max_y = 247.0
  247. #*#
  248. #*# [bed_mesh Mesh12]
  249. #*# version = 1
  250. #*# points =
  251. #*# 0.172500, 0.283750, 0.303750, 0.278750, 0.333750, 0.301250, 0.272500, 0.252500, 0.213750, 0.128750, 0.055000, -0.092500
  252. #*# 0.057500, 0.108750, 0.146250, 0.176250, 0.242500, 0.241250, 0.195000, 0.148750, 0.181250, 0.113750, -0.006250, -0.168750
  253. #*# -0.016250, -0.012500, 0.057500, 0.061250, 0.156250, 0.120000, 0.118750, 0.068750, 0.066250, -0.015000, -0.092500, -0.147500
  254. #*# -0.147500, -0.097500, -0.073750, 0.022500, 0.085000, 0.036250, 0.018750, 0.058750, 0.070000, -0.070000, -0.185000, -0.243750
  255. #*# -0.190000, -0.151250, -0.088750, -0.086250, -0.053750, -0.042500, -0.040000, -0.081250, -0.081250, -0.191250, -0.208750, -0.355000
  256. #*# -0.285000, -0.256250, -0.146250, -0.125000, -0.080000, -0.028750, -0.058750, -0.135000, -0.170000, -0.216250, -0.271250, -0.385000
  257. #*# -0.341250, -0.248750, -0.217500, -0.095000, -0.106250, -0.097500, -0.148750, -0.138750, -0.203750, -0.276250, -0.348750, -0.426250
  258. #*# -0.388750, -0.275000, -0.172500, -0.101250, -0.083750, -0.068750, -0.128750, -0.167500, -0.175000, -0.235000, -0.346250, -0.455000
  259. #*# -0.322500, -0.253750, -0.177500, -0.105000, -0.081250, -0.057500, -0.078750, -0.163750, -0.183750, -0.231250, -0.320000, -0.445000
  260. #*# -0.363750, -0.286250, -0.113750, -0.062500, -0.101250, -0.080000, -0.097500, -0.105000, -0.206250, -0.216250, -0.288750, -0.380000
  261. #*# -0.281250, -0.146250, -0.147500, -0.050000, -0.047500, -0.073750, -0.106250, -0.102500, -0.162500, -0.227500, -0.222500, -0.295000
  262. #*# -0.203750, -0.107500, -0.041250, 0.028750, 0.045000, -0.023750, -0.012500, -0.005000, -0.070000, -0.076250, -0.197500, -0.225000
  263. #*# x_count = 12
  264. #*# y_count = 12
  265. #*# mesh_x_pps = 3
  266. #*# mesh_y_pps = 3
  267. #*# algo = bicubic
  268. #*# tension = 0.2
  269. #*# min_x = 10.0
  270. #*# max_x = 279.94
  271. #*# min_y = 0.0
  272. #*# max_y = 246.95
  273. #*#
  274. #*# [bed_mesh mesh_12_new]
  275. #*# version = 1
  276. #*# points =
  277. #*# -0.101250, 0.025000, 0.095000, 0.135000, 0.202500, 0.196250, 0.192500, 0.157500, 0.161250, 0.090000, -0.017500, -0.123750
  278. #*# -0.108750, -0.053750, -0.003750, 0.067500, 0.153750, 0.215000, 0.117500, 0.122500, 0.153750, 0.093750, -0.032500, -0.136250
  279. #*# -0.217500, -0.096250, -0.063750, 0.056250, 0.071250, 0.121250, 0.122500, 0.105000, 0.092500, 0.037500, -0.051250, -0.087500
  280. #*# -0.238750, -0.201250, -0.103750, -0.005000, 0.076250, 0.062500, 0.060000, 0.093750, 0.123750, -0.028750, -0.066250, -0.127500
  281. #*# -0.261250, -0.247500, -0.135000, -0.057500, -0.028750, 0.013750, 0.020000, 0.020000, -0.018750, -0.072500, -0.067500, -0.217500
  282. #*# -0.296250, -0.268750, -0.195000, -0.082500, -0.012500, 0.023750, 0.036250, 0.003750, -0.041250, -0.083750, -0.166250, -0.218750
  283. #*# -0.383750, -0.307500, -0.173750, -0.038750, -0.002500, 0.023750, -0.027500, 0.050000, -0.058750, -0.135000, -0.160000, -0.265000
  284. #*# -0.331250, -0.217500, -0.161250, 0.018750, 0.043750, 0.116250, 0.046250, -0.002500, -0.017500, -0.078750, -0.150000, -0.251250
  285. #*# -0.300000, -0.221250, -0.097500, -0.008750, 0.071250, 0.087500, -0.010000, -0.016250, 0.016250, -0.035000, -0.082500, -0.188750
  286. #*# -0.317500, -0.192500, -0.001250, 0.022500, 0.085000, 0.048750, 0.076250, 0.036250, -0.002500, 0.013750, -0.078750, -0.182500
  287. #*# -0.271250, -0.115000, -0.031250, 0.075000, 0.113750, 0.073750, 0.061250, 0.012500, 0.031250, -0.008750, -0.051250, -0.112500
  288. #*# -0.198750, -0.017500, 0.080000, 0.138750, 0.131250, 0.192500, 0.168750, 0.120000, 0.095000, 0.107500, -0.010000, -0.012500
  289. #*# x_count = 12
  290. #*# y_count = 12
  291. #*# mesh_x_pps = 3
  292. #*# mesh_y_pps = 3
  293. #*# algo = bicubic
  294. #*# tension = 0.2
  295. #*# min_x = 10.0
  296. #*# max_x = 279.94
  297. #*# min_y = 0.0
  298. #*# max_y = 246.95
  299.  
Advertisement
Add Comment
Please, Sign In to add comment