rootiest

ebb-canbus.cfg

Jul 10th, 2022 (edited)
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.75 KB | None | 0 0
  1. # This file contains common pin mappings for the BIGTREETECH EBBCan
  2. # Canbus board. To use this config, the firmware should be compiled for the
  3. # STM32G0B1 with "8 MHz crystal" and "USB (on PA11/PA12)" or "CAN bus (on PB0/PB1)".
  4. # The "EBB Can" micro-controller will be used to control the components on the nozzle.
  5.  
  6. # See docs/Config_Reference.md for a description of parameters.
  7.  
  8. [mcu EBBCan]
  9. #serial: /dev/serial/by-id/usb-Klipper_Klipper_firmware_12345-if00
  10. canbus_uuid: e8d3e3388393
  11.  
  12. [adxl345]
  13. cs_pin: EBBCan: PB12
  14. spi_software_sclk_pin: EBBCan: PB10
  15. spi_software_mosi_pin: EBBCan: PB11
  16. spi_software_miso_pin: EBBCan: PB2
  17. axes_map: x,y,z
  18.  
  19. [extruder]
  20. step_pin: EBBCan: PD0
  21. dir_pin: EBBCan: PD1
  22. enable_pin: !EBBCan: PD2
  23. microsteps: 16
  24. rotation_distance: 24.395
  25. nozzle_diameter: 0.400
  26. filament_diameter: 1.750
  27. max_extrude_only_distance: 100.0
  28. max_extrude_cross_section: 50.0
  29. min_extrude_temp: 180
  30. pressure_advance = 0.055
  31. smooth_time: 0.500
  32. heater_pin: EBBCan: PA2
  33. #sensor_type: PT1000
  34. #pullup_resistor: 4700
  35. #sensor_pin: EBBCan: PA3
  36. #control: pid
  37. #pid_Kp: 21.527
  38. #pid_Ki: 1.063
  39. #pid_Kd: 108.982
  40. min_temp: 0
  41. max_temp: 450
  42.  
  43. sensor_type:MAX31865
  44. sensor_pin: EBBCan: PA4
  45. spi_bus: spi1
  46. rtd_nominal_r: 1000
  47. rtd_reference_r: 4300
  48. rtd_num_of_wires: 2
  49.  
  50. [tmc2209 extruder]
  51. uart_pin: EBBCan: PA15
  52. run_current: 0.650
  53. stealthchop_threshold: 999999
  54.  
  55. [fan]
  56. pin: EBBCan: PA0
  57.  
  58. [heater_fan hotend_fan]
  59. pin: EBBCan: PA1
  60. heater: extruder
  61. heater_temp: 50.0
  62.  
  63. [neopixel sb_leds]
  64. pin: EBBCan:PD3
  65. chain_count: 3
  66. color_order: GRBW
  67. initial_RED: 0.5
  68. initial_GREEN: 0.5
  69. initial_BLUE: 0.5
  70. initial_WHITE: 0.5
  71.  
  72. [bltouch]
  73. sensor_pin: ^EBBCan:PB8
  74. control_pin: EBBCan:PB9
  75. x_offset: -44
  76. y_offset: -7
  77. #z_offset: 2.295
  78. probe_with_touch_mode: True
  79. stow_on_each_sample: False
  80. samples: 2
  81. samples_tolerance: 0.0125
  82. samples_tolerance_retries: 5
  83.  
  84. #[filament_switch_sensor switch_sensor]
  85. #switch_pin: EBBCan:PB4
  86.  
  87. [filament_motion_sensor smart_filament_sensor]
  88. switch_pin: ^EBBCan:PB3
  89. detection_length: 7.0
  90. extruder: extruder
  91. pause_on_runout: false #pause handled by macro
  92. runout_gcode:
  93.  FILAMENT_RUNOUT
  94. insert_gcode:
  95.  M117 Filament inserted
  96. event_delay: 3.0
  97. pause_delay: 0.0001
  98.  
  99. # Probing position
  100. [safe_z_home]
  101. home_xy_position: 164, 136
  102. speed: 220
  103. z_hop: 5
  104. z_hop_speed: 100
  105. move_to_previous: True
  106.  
  107. # Bed Mesh config
  108. [bed_mesh]
  109. speed: 220
  110. horizontal_move_z: 5
  111. mesh_min: 10, 10
  112. mesh_max: 196, 205
  113. probe_count: 10,10
  114. mesh_pps: 5, 5
  115. algorithm: bicubic
  116.  
  117. # Bed screw position and type
  118. [screws_tilt_adjust]
  119. screw1: 83,43
  120. screw1_name: front left screw
  121. screw2: 250,43
  122. screw2_name: front right screw
  123. screw3: 250,210
  124. screw3_name: rear right screw
  125. screw4: 83,210
  126. screw4_name: rear left screw
  127. horizontal_move_z: 10
  128. speed: 50
  129. screw_thread: CW-M4
Add Comment
Please, Sign In to add comment