Advertisement
robathome

Klipper config - Ender5+ - 23Jun2020

Jun 23rd, 2020
809
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.57 KB | None | 0 0
  1. # This file contains common pin mappings for Melzi v2.0 boards. To use
  2. # this config, the firmware should be compiled for the AVR
  3. # atmega1284p.
  4.  
  5. # Note, a number of Melzi boards are shipped with a bootloader that
  6. # requires the following command to flash the board:
  7. #  avrdude -p atmega1284p -c arduino -b 57600 -P /dev/ttyUSB0 -U out/klipper.elf.hex
  8. # If the above command does not work and "make flash" does not work
  9. # then one may need to flash a bootloader to the board - see the
  10. # Klipper docs/Bootloaders.md file for more information.
  11.  
  12. # See the example.cfg file for a description of available parameters.
  13.  
  14. [stepper_x]
  15. step_pin: PD7
  16. dir_pin: PC5
  17. enable_pin: !PD6
  18. step_distance: .0125
  19. endstop_pin: ^!PC2
  20. position_endstop: 0
  21. position_max: 220
  22. homing_speed: 50
  23. homing_retract_dist: 10
  24. homing_retract_speed: 25
  25. second_homing_speed: 10
  26.  
  27. [stepper_y]
  28. step_pin: PC6
  29. dir_pin: PC7
  30. enable_pin: !PD6
  31. step_distance: .0125
  32. endstop_pin: ^!PC3
  33. position_endstop: 0
  34. position_max: 220
  35. homing_speed: 50
  36. homing_retract_dist: 10
  37. homing_retract_speed: 25
  38. second_homing_speed: 10
  39.  
  40. [stepper_z]
  41. step_pin: PB3
  42. dir_pin: !PB2
  43. enable_pin: !PA5
  44. step_distance: .0025
  45. endstop_pin: ^!PC4
  46. position_endstop: 0.5
  47. position_max: 250
  48. homing_speed: 15
  49. homing_retract_dist: 5
  50. homing_retract_speed: 10
  51. second_homing_speed: 5
  52.  
  53. [extruder]
  54. step_pin: PB1
  55. dir_pin: PB0
  56. enable_pin: !PD6
  57. step_distance: .002
  58. nozzle_diameter: 0.400
  59. filament_diameter: 1.750
  60. max_extrude_only_distance: 100
  61. max_extrude_only_velocity: 40
  62. pressure_advance: 0.0
  63. pressure_advance_smooth_time: 0.04
  64. heater_pin: PD5
  65. min_temp: 0
  66. min_extrude_temp: 180
  67. max_temp: 280
  68. sensor_type: EPCOS 100K B57560G104F
  69. sensor_pin: PA7
  70. smooth_time: 2.0
  71. control: pid
  72. pid_Kp: 22.2
  73. pid_Ki: 1.08
  74. pid_Kd: 114
  75. pid_integral_max: 1.0
  76.  
  77. [heater_bed]
  78. heater_pin: PD2
  79. sensor_type: EPCOS 100K B57560G104F
  80. sensor_pin: PA6
  81. control: watermark
  82. min_temp: 0
  83. max_temp: 130
  84. max_delta: 2.0
  85.  
  86. [fan]
  87. pin: PB4
  88.  
  89. [mcu]
  90. serial: /dev/serial/by-id/usb-1a86_USB_Serial-if00-port0
  91. baud: 115200
  92. restart_method: arduino
  93.  
  94. [printer]
  95. kinematics: cartesian
  96. max_velocity: 300
  97. max_accel: 5000
  98. max_z_velocity: 15
  99. max_z_accel: 1500
  100. max_accel_to_decel: 2000
  101. square_corner_velocity: 5.0
  102.  
  103. [safe_z_home]
  104. home_xy_position: 0,0
  105. speed: 50
  106. z_hop: 10
  107. z_hop_speed: 25
  108. move_to_previous: False
  109.  
  110. [virtual_sdcard]
  111. path: ~/.octoprint/uploads
  112.  
  113. [force_move]
  114. enable_force_move: True
  115.  
  116. [pause_resume]
  117. recover_velocity: 50
  118.  
  119. [firmware_retraction]
  120. retract_length: 1.0
  121. retract_speed: 40
  122. unretract_extra_length: 0.0
  123. unretract_speed: 30
  124.  
  125. [include /configs/*.cfg]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement