Advertisement
PiotrS

Untitled

May 9th, 2023
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.80 KB | Source Code | 0 0
  1. # This file contains a configuration for the Anycubic Kobra Go printer.
  2. #
  3. # See docs/Config_Reference.md for a description of parameters.
  4. #
  5. # To build the firmware, use the following configuration:
  6. # - Micro-controller: Huada Semiconductor HC32F460
  7. # - Communication interface: Serial (PA3 & PA2) - Anycubic
  8. #
  9. # Installation:
  10. # 1. Rename the klipper bin to `firmware.bin` and copy it to an SD Card.
  11. # 2. Power off the Printer, insert the SD Card and power it on.
  12. # 3. The the LCD will be stuck on the Firmware-update screen.
  13. # Just Wait for 3-5 minutes to ensure the firmware is flashed.
  14. # 4. After waiting, shutdown the printer and remove the SD Card.
  15.  
  16. [include macros.cfg]
  17.  
  18. [stepper_x]
  19. step_pin: PA12
  20. dir_pin: PA11
  21. enable_pin: !PA15
  22. microsteps: 16
  23. rotation_distance: 40
  24. endstop_pin: !PH2
  25. position_endstop: -13
  26. position_min:-13
  27. position_max: 235
  28. homing_speed: 50
  29.  
  30. [stepper_y]
  31. step_pin: PA9
  32. dir_pin: PA8
  33. enable_pin: !PA15
  34. microsteps: 16
  35. rotation_distance: 40
  36. endstop_pin: ^!PC13
  37. position_endstop: -9
  38. position_min:-9
  39. position_max: 238
  40. homing_speed: 50
  41.  
  42. [stepper_z]
  43. step_pin: PC7
  44. dir_pin: !PC6
  45. enable_pin: !PA15
  46. microsteps: 16
  47. rotation_distance: 8
  48. endstop_pin: ^PC14
  49. #position_endstop: 0
  50. position_min: -10
  51. position_max: 250
  52. homing_speed: 5
  53.  
  54. [extruder]
  55. step_pin: PB15
  56. dir_pin: PB14
  57. enable_pin: !PA15
  58. microsteps: 16
  59. rotation_distance: 31.07
  60. max_extrude_only_velocity: 25
  61. max_extrude_only_accel: 1000
  62. nozzle_diameter: 0.400
  63. filament_diameter: 1.750
  64. heater_pin: PB8
  65. sensor_type: ATC Semitec 104GT-2
  66. sensor_pin: PC3
  67. min_extrude_temp: 170
  68. min_temp: 0
  69. max_temp: 270
  70. pressure_advance: 0.78
  71. #control: pid
  72. #pid_kp: 19.56
  73. #pid_ki: 1.62
  74. #pid_kd: 200.00
  75. max_extrude_only_distance: 400.0
  76. max_extrude_only_velocity: 3000
  77.  
  78. [heater_bed]
  79. heater_pin: PB9
  80. sensor_type: EPCOS 100K B57560G104F
  81. sensor_pin: PC1
  82. min_temp: 0
  83. max_temp: 120
  84. #control: pid
  85. #pid_kp: 97.1
  86. #pid_ki: 1.41
  87. #pid_kd: 1675.16
  88.  
  89. [bed_mesh]
  90. speed: 200
  91. horizontal_move_z: 2.5
  92. mesh_min: 5, 5
  93. mesh_max: 217.2, 207.8
  94. probe_count: 5, 5
  95.  
  96. [probe]
  97. pin: PA1
  98. x_offset: -20.8
  99. y_offset: 0
  100. #z_offset: 0
  101. samples: 3
  102. samples_result: average
  103. samples_tolerance_retries: 3
  104. sample_retract_dist: 0.5
  105. speed: 2
  106. lift_speed: 4
  107.  
  108. [safe_z_home]
  109. home_xy_position: 0, 0
  110. z_hop: 10
  111. z_hop_speed: 15
  112.  
  113. [virtual_sdcard]
  114. path: ~/KobraGo_data/gcodes
  115.  
  116. [pause_resume]
  117.  
  118. [display_status]
  119.  
  120. [controller_fan controller_fan]
  121. pin: PB12
  122.  
  123. [heater_fan extruder_fan]
  124. pin: PB13
  125.  
  126. [fan]
  127. pin: PB5
  128. cycle_time: 0.00005 #20kHz
  129.  
  130. [output_pin enable_pin]
  131. pin: PB6
  132. static_value: 1
  133. #This pin enables the bed, hotend, extruder fan, part fan.
  134.  
  135. [mcu]
  136. serial: /dev/serial/by-id/usb-1a86_USB_Serial-if00-port0
  137. restart_method: command
  138.  
  139. [printer]
  140. kinematics: cartesian
  141. max_velocity: 300
  142. max_accel: 4000
  143. max_z_velocity: 4
  144. max_z_accel: 100
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement