Advertisement
Guest User

Untitled

a guest
Oct 4th, 2024
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.53 KB | None | 0 0
  1. include fluidd.cfg]
  2. [mcu]
  3. serial: /dev/serial/by-id/usb-Klipper_stm32f401xc_300050000A504E3755343220-if00
  4.  
  5. [virtual_sdcard]
  6. path: /home/james/printer_data/gcodes
  7. on_error_gcode: CANCEL_PRINT
  8.  
  9. [printer]
  10. kinematics: none
  11. max_velocity: 1000
  12. max_accel: 1000
  13.  
  14. # This file contains pin mappings for the Artillery Genius Pro (2022)
  15. # with a Artillery_Ruby-v1.2 board. To use this config, during "make menuconfig"
  16. # select the STM32F401 with "No bootloader" and USB (on PA11/PA12)
  17. # communication.
  18.  
  19. # To flash this firmware, set the physical bridge between +3.3V and Boot0 PIN
  20. # on Artillery_Ruby mainboard. Then run the command:
  21. # make flash FLASH_DEVICE=/dev/serial/by-id/usb-Klipper_stm32f401xc_*-if00
  22.  
  23. # See docs/Config_Reference.md for a description of parameters.
  24.  
  25. [extruder]
  26. max_extrude_only_distance: 700.0
  27. step_pin: PA7
  28. dir_pin: PA6
  29. enable_pin: !PC4
  30. microsteps: 16
  31. rotation_distance: 7.1910
  32. nozzle_diameter: 0.400
  33. filament_diameter: 1.750
  34. heater_pin: PC9
  35. sensor_type: EPCOS 100K B57560G104F
  36. sensor_pin: PC0
  37. min_temp: 0
  38. max_temp: 250
  39. control: pid
  40. pid_Kp: 23.223
  41. pid_Ki: 1.518
  42. pid_Kd: 88.826
  43.  
  44. [stepper_x]
  45. step_pin: !PB14
  46. dir_pin: PB13
  47. enable_pin: !PB15
  48. microsteps: 16
  49. rotation_distance: 40
  50. endstop_pin: !PA2
  51. position_endstop: 0
  52. position_max: 220
  53. homing_speed: 60
  54.  
  55. [stepper_y]
  56. step_pin: PB10
  57. dir_pin: PB2
  58. enable_pin: !PB12
  59. microsteps: 16
  60. rotation_distance: 40
  61. endstop_pin: !PA1
  62. position_endstop: 0
  63. position_max: 220
  64. homing_speed: 60
  65.  
  66. [stepper_z]
  67. step_pin: PB0
  68. dir_pin: !PC5
  69. enable_pin: !PB1
  70. microsteps: 16
  71. rotation_distance: 8
  72. endstop_pin: probe:z_virtual_endstop
  73. position_max: 250
  74. position_min: -5
  75.  
  76. [heater_bed]
  77. heater_pin: PA8
  78. sensor_type: EPCOS 100K B57560G104F
  79. sensor_pin: PC1
  80. min_temp: 0
  81. max_temp: 130
  82. control: pid
  83. pid_Kp: 23.223
  84. pid_Ki: 1.518
  85. pid_Kd: 88.826
  86.  
  87. [bed_screws]
  88. screw1: 38,45
  89. screw2: 180,45
  90. screw3: 180,180
  91. screw4: 38,180
  92.  
  93. [fan]
  94. pin: PC8
  95. off_below: 0.1
  96.  
  97. [heater_fan hotend_fan]
  98. pin: PC7
  99. heater: extruder
  100. heater_temp: 50.0
  101.  
  102. [controller_fan stepper_fan]
  103. pin: PC6
  104. idle_timeout: 300
  105.  
  106. [printer]
  107. kinematics: cartesian
  108. max_velocity: 500
  109. max_accel: 4000
  110. max_z_velocity: 50
  111. square_corner_velocity: 5.0
  112. max_z_accel: 100
  113.  
  114. [bltouch]
  115. sensor_pin: PC2
  116. control_pin: PC3
  117. x_offset:27.25
  118. y_offset:-12.8
  119. z_offset: 0.25
  120. speed:10
  121. samples:1
  122. samples_result:average
  123.  
  124. [bed_mesh]
  125. speed: 800
  126. mesh_min: 30, 20
  127. mesh_max: 210, 200
  128. probe_count: 5,5
  129. algorithm: bicubic
  130. move_check_distance: 3.0
  131.  
  132. [safe_z_home]
  133. home_xy_position: 110,110
  134. speed: 100
  135. z_hop: 10
  136. z_hop_speed: 5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement