Advertisement
Guest User

ender2-config

a guest
Jan 18th, 2018
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 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 without a bootloader. In
  6. # that case, an external programmer will be needed to flash a
  7. # bootloader to the board (for example, see
  8. # http://www.instructables.com/id/Flashing-a-Bootloader-to-the-CR-10/
  9. # ). Once that is done, one should be able to use the standard "make
  10. # flash" command to flash Klipper.
  11.  
  12. # See the example.cfg file for a description of available parameters.
  13. # Ender 2 configuration file
  14.  
  15. [stepper_x]
  16. step_pin: PD7
  17. dir_pin: !PC5
  18. enable_pin: !PD6
  19. step_distance: .0125
  20. endstop_pin: ^PC2
  21. position_endstop: 0
  22. position_max: 150
  23. homing_speed: 30
  24.  
  25. [stepper_y]
  26. step_pin: PC6
  27. dir_pin: !PC7
  28. enable_pin: !PD6
  29. step_distance: .0125
  30. endstop_pin: ^PC3
  31. position_endstop: 0
  32. position_max: 150
  33. homing_speed: 30
  34.  
  35. [stepper_z]
  36. step_pin: PB3
  37. dir_pin: PB2
  38. enable_pin: !PA5
  39. step_distance: 0.0025
  40. endstop_pin: ^PC4
  41. position_endstop: 0
  42. position_max: 200
  43. homing_speed: 4
  44.  
  45. [extruder]
  46. step_pin: PB1
  47. dir_pin: !PB0
  48. enable_pin: !PD6
  49. step_distance: .01042
  50. nozzle_diameter: 0.400
  51. filament_diameter: 1.750
  52. heater_pin: PD5
  53. sensor_type: EPCOS 100K B57560G104F
  54. sensor_pin: PA7
  55. #pressure_advance_lookahead_time: 0.01
  56. #pressure_advance: 0.2
  57. control: pid
  58. pid_Kp: 22.2
  59. pid_Ki: 1.08
  60. pid_Kd: 114
  61. min_temp: 0
  62. max_temp: 250
  63. max_extrude_only_distance: 101.0
  64.  
  65. [heater_bed]
  66. heater_pin: PD4
  67. sensor_type: EPCOS 100K B57560G104F
  68. sensor_pin: PA6
  69. control: watermark
  70. min_temp: 0
  71. max_temp: 130
  72.  
  73. [fan]
  74. pin: PB4
  75.  
  76. [mcu]
  77. serial: /dev/ttyUSB0
  78.  
  79. [printer]
  80. kinematics: cartesian
  81. max_velocity: 300
  82. max_accel: 3000
  83. max_z_velocity: 5
  84. max_z_accel: 100
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement