Advertisement
insippo

Kingroon KP3S klipper printer.cfg

Apr 1st, 2023
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.73 KB | Software | 0 0
  1. #####################################
  2. # PRINTER #
  3. #####################################
  4. [printer]
  5. kinematics: cartesian
  6. max_velocity: 250
  7. max_accel: 1800
  8. max_accel_to_decel:1800
  9. max_z_velocity: 15
  10. max_z_accel: 100
  11. square_corner_velocity: 5.0
  12.  
  13. [input_shaper]
  14. shaper_freq_x: 23.0
  15. shaper_freq_y: 39.0
  16. shaper_type_x: mzv
  17. shaper_type_y: mzv
  18.  
  19. [mcu]
  20. serial: /dev/serial/by-id/usb-1a86_USB_Serial-if00-port0
  21. baud: 250000
  22. restart_method: command
  23.  
  24. [temperature_sensor HOST]
  25. sensor_type: temperature_host
  26.  
  27. [temperature_sensor MCU]
  28. sensor_type: temperature_mcu
  29.  
  30. [virtual_sdcard]
  31. path: ~/gcode_files
  32.  
  33. [gcode_arcs]
  34. resolution: 0.05
  35.  
  36. [display_status]
  37.  
  38. [pause_resume]
  39.  
  40. [respond]
  41.  
  42.  
  43. #####################################
  44. # Heater Verification #
  45. #####################################
  46. [verify_heater heater_bed]
  47. max_error: 120
  48. check_gain_time: 60
  49. hysteresis: 5
  50. heating_gain: 2
  51.  
  52. [verify_heater extruder]
  53. max_error: 120
  54. check_gain_time: 30
  55. hysteresis: 5
  56. heating_gain: 2
  57.  
  58.  
  59. #####################################
  60. # BEEPER #
  61. #####################################
  62. #[output_pin _BEEPER_pin]
  63. #pin: PC5
  64. #pwm: true
  65. #value: 1
  66. #shutdown_value: 0
  67. #cycle_time: 0.001
  68. #scale: 1000
  69.  
  70.  
  71. #####################################
  72. # Filament Sensor #
  73. #####################################
  74. [filament_switch_sensor FilamentSensor]
  75. pause_on_runout: True
  76. runout_gcode:
  77. M118 Starting filament change
  78. M600
  79. insert_gcode:
  80. switch_pin: !PA4
  81. event_delay: 5.0
  82.  
  83.  
  84. #####################################
  85. # STEPPER #
  86. #####################################
  87. [include stepper.cfg]
  88.  
  89.  
  90. #####################################
  91. # BLtouch #
  92. #####################################
  93. [include bltouch.cfg] # disable to use stock modification
  94.  
  95.  
  96. #####################################
  97. # TMC #
  98. #####################################
  99. #[include tmc.cfg] # disable to use stock modification
  100.  
  101.  
  102. #####################################
  103. # THERMISTOR #
  104. #####################################
  105. [include thermistor.cfg]
  106.  
  107.  
  108. #####################################
  109. # EXTRUDER #
  110. #####################################
  111. [include extruder.cfg]
  112.  
  113.  
  114. #####################################
  115. # BED #
  116. #####################################
  117. [include bed.cfg]
  118.  
  119.  
  120. #####################################
  121. # FAN #
  122. #####################################
  123. [include fan.cfg]
  124.  
  125.  
  126. #####################################
  127. # MACROS #
  128. #####################################
  129. [include macros/*.cfg]
  130.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement