Advertisement
lord_shadow

Untitled

Oct 6th, 2023
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.73 KB | None | 0 0
  1. # This file contains pin mappings for the Creality CR6-SE with Rev. 4.5.3 Motherboard (Late 2020/2021) as the heater pins changed.
  2. # To use this config, during "make menuconfig" select the STM32F103
  3. # with a "28KiB bootloader" and serial (on USART1 PA10/PA9)
  4. # communication.
  5.  
  6. # Flash this firmware by copying "out/klipper.bin" to a SD card and
  7. # turning on the printer with the card inserted. The firmware
  8. # filename must end in ".bin" and must not match the last filename
  9. # that was flashed.
  10.  
  11. # See docs/Config_Reference.md for a description of parameters.
  12. [include mainsail.cfg]
  13.  
  14. [safe_z_home]
  15. home_xy_position: 200,200
  16. z_hop: 10
  17.  
  18. [bed_mesh]
  19. speed: 120
  20. horizontal_move_z: 5
  21. mesh_min: 15,15
  22. mesh_max: 400, 400
  23. probe_count: 5,5
  24. algorithm: bicubic
  25. fade_start: 2
  26. fade_end: 10
  27. fade_target: 0
  28.  
  29. [stepper_x]
  30. step_pin: PB8
  31. dir_pin: !PB7
  32. enable_pin: !PC3
  33. rotation_distance: 40
  34. microsteps: 16
  35. endstop_pin: PC4
  36. position_min: -5
  37. position_endstop: -5
  38. position_max: 400
  39. homing_speed: 50
  40.  
  41. [stepper_y]
  42. step_pin: PB6
  43. dir_pin: PB5
  44. enable_pin: !PC3
  45. rotation_distance: 40
  46. microsteps: 16
  47. endstop_pin: PC5
  48. position_min: -2
  49. position_endstop: -2
  50. position_max: 400
  51. homing_speed: 50
  52.  
  53. [stepper_z]
  54. step_pin: PB4
  55. dir_pin: !PB3
  56. enable_pin: !PC3
  57. rotation_distance: 8
  58. microsteps: 16
  59. endstop_pin: probe:z_virtual_endstop
  60. position_min: -1.5
  61. position_max: 400
  62. homing_speed: 4
  63. second_homing_speed: 1
  64. homing_retract_dist: 2.0
  65.  
  66. [extruder]
  67. max_extrude_only_distance: 1000.0
  68. step_pin: PC2
  69. dir_pin: !PB9
  70. enable_pin: !PC3
  71. rotation_distance: 30.4768
  72. microsteps: 16
  73. nozzle_diameter: 0.400
  74. filament_diameter: 1.750
  75. heater_pin: PB14
  76. sensor_type: EPCOS 100K B57560G104F
  77. sensor_pin: PB1
  78. control: pid
  79. # tuned for stock hardware with 200 degree Celsius target
  80. pid_Kp: 14.32
  81. pid_Ki: 0.81
  82. pid_Kd: 63.12
  83. min_temp: 0
  84. max_temp: 275
  85.  
  86. [heater_bed]
  87. heater_pin: PB13
  88. sensor_type: EPCOS 100K B57560G104F
  89. sensor_pin: PB0
  90. control: pid
  91. # tuned for stock hardware with 50 degree Celsius target
  92. pid_Kp: 79.49
  93. pid_Ki: 1.17
  94. pid_Kd: 1349.52
  95. min_temp: 0
  96. max_temp: 100
  97.  
  98. [fan]
  99. pin: PB15
  100. kick_start_time: 0.5
  101.  
  102. [mcu]
  103. serial: /dev/serial/by-id/usb-1a86_USB_Serial-if00-port0
  104. restart_method: command
  105.  
  106. # Before printing the PROBE_CALIBRATE command needs to be issued
  107. # to run the probe calibration procedure, described at
  108. # docs/Probe_Calibrate.md, to find the correct z_offset.
  109. [probe]
  110. pin: PA4
  111. x_offset: 0.0
  112. y_offset: 0.0
  113. z_offset: 0.0
  114. speed: 2.0
  115. samples: 5
  116.  
  117. [filament_switch_sensor filament_sensor]
  118. pause_on_runout: true
  119. switch_pin: ^!PA7
  120.  
  121. [output_pin LED_pin]
  122. pin: PA6
  123.  
  124. [static_digital_output daughterboard_communication]
  125. pins: !PA5
  126.  
  127. [printer]
  128. kinematics: cartesian
  129. max_velocity: 500
  130. max_accel: 500
  131. max_z_velocity: 5
  132. max_z_accel: 100
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement