Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # SKR V1.4 Turbo XYZ>TMC 2208, E>LV8729
- # BLTouch
- # BMG Extruder
- # LPC1769.
- # https://www.reddit.com/r/klippers/comments/etpvtc/klipper_profile_for_skr_v14_turbo/
- # https://www.reddit.com/r/klippers/comments/m27xhm/klipper_config_for_ender_5_plus_with_skr_14_turbo/
- ###################################
- # Extruder Settings
- # https://github.com/KevinOConnor/klipper/blob/master/docs/Rotation_Distance.md
- #
- # rotation_distance = <full_steps_per_rotation> * <microsteps> / <steps_per_mm>
- # r_d = 200 * 16 / 138 = 23.1884
- # Round the new rotation_distance to three decimal places.
- ###################################
- [extruder]
- step_pin: P2.13
- dir_pin: !P0.11
- enable_pin: !P2.12
- microsteps: 16
- rotation_distance: 46.25
- nozzle_diameter: 0.400
- filament_diameter: 1.750
- max_extrude_only_distance: 750.0
- max_extrude_only_velocity: 75.0
- max_extrude_only_accel: 1000.0
- #pressure_advance: 0.202
- heater_pin: P2.7
- sensor_type: EPCOS 100K B57560G104F
- sensor_pin: P0.24
- control: pid
- pid_kp = 26.057
- pid_ki = 1.316
- pid_kd = 128.982
- min_extrude_temp: 15
- min_temp: 5
- max_temp: 265
- ########################################
- # BL-Touch, Mesh and Homing Configuration
- # Reference: https://www.klipper3d.org/BLTouch.html
- ########################################
- [bltouch]
- sensor_pin: P0.10 #Probe
- control_pin: P2.0 #SERVOS
- stow_on_each_sample: False
- probe_with_touch_mode: True
- set_output_mode: 5V
- x_offset: -47.5
- y_offset: -10
- z_offset: 1.7
- speed: 2.0
- samples: 2
- sample_retract_dist: 4.0
- [bed_mesh]
- speed: 100
- horizontal_move_z: 5
- mesh_min: 5, 15
- #mesh_max: 314,347
- mesh_max: 310,337
- probe_count: 5,5
- fade_start: 1
- fade_end: 10
- [safe_z_home]
- #home_xy_position: 225,200 # Change coordinates to the center of your print bed
- home_xy_position: 180,180
- speed: 80
- z_hop: 10 # Move up 10mm
- z_hop_speed: 5
- ########################################
- # Stepper Axis & TMC2208 Configuration
- ########################################
- [tmc2208 stepper_x]
- uart_pin: P1.10
- run_current: 0.800
- hold_current: 0.500
- stealthchop_threshold: 250
- [stepper_x]
- step_pin: P2.2
- dir_pin: !P2.6
- enable_pin: !P2.1
- microsteps: 16
- rotation_distance: 40
- endstop_pin: P1.29
- position_endstop: 360
- position_min: 0
- position_max: 360
- homing_speed: 50
- homing_retract_dist: 5
- [tmc2208 stepper_y]
- uart_pin: P1.9
- run_current: 0.800
- hold_current: 0.500
- stealthchop_threshold: 250
- [stepper_y]
- step_pin: P0.19
- dir_pin: !P0.20
- enable_pin:! P2.8
- microsteps: 16
- rotation_distance: 40
- endstop_pin: P1.28
- position_endstop: 360
- position_min: 0
- position_max: 360
- homing_speed: 50
- homing_retract_dist: 5
- [tmc2208 stepper_z]
- uart_pin: P1.8
- run_current: 0.750
- hold_current: 0.500
- stealthchop_threshold: 30
- [stepper_z]
- step_pin: P0.22
- dir_pin: !P2.11
- enable_pin: !P0.21
- endstop_pin: probe:z_virtual_endstop
- rotation_distance: 4
- position_min: -5.75
- position_max: 410.75
- homing_speed: 10.0
- microsteps: 16
- ###################################
- # Heated Bed Settings
- ###################################
- [heater_bed]
- heater_pin: P2.5 #ok
- sensor_type: EPCOS 100K B57560G104F
- sensor_pin: P0.25 #P0.23
- control: pid
- control = pid
- pid_kp = 69.343
- pid_ki = 1.016
- pid_kd = 1183.162
- min_temp: 5
- max_temp: 140
- [fan]
- pin: P2.3 #ok to change later
- [t5uid1]
- firmware: dgus_reloaded
- machine_name: Ender 5 Plus
- #volume: 60
- #brightness: 50
- z_min: 0
- z_max: 410
- [mcu]
- serial: /dev/serial/by-id/usb-Klipper_lpc1769_0CE00007A8943BAF03A7685CC22000F5-if00
- [printer]
- kinematics: cartesian
- max_velocity: 300
- max_accel: 2000
- max_accel_to_decel:2000
- max_z_velocity: 6
- max_z_accel: 100
- #[virtual_sdcard]
- #path: /home/ender/.octoprint/uploads
- [display_status]
- [pause_resume]
- #recover_velocity: 50.
- # When capture/restore is enabled, the speed at which to return to
- # the captured position (in mm/s). Default is 50.0 mm/s.
- [gcode_arcs]
- resolution: 0.05
- # An arc will be split into segments. Each segment's length will
- # equal the resolution in mm set above. Lower values will produce a
- # finer arc, but also more work for your machine. Arcs smaller than
- # the configured value will become straight lines. The default is
- # 1mm.
- ########################################
- # GCODE MACRO: G29 Bed Leveling
- ########################################
- [gcode_macro G29]
- gcode:
- M117 Starting bed leveling now.
- G28
- M117 Deleting Old Profile, p1
- BED_MESH_PROFILE REMOVE=p1
- BED_MESH_CALIBRATE
- M117 Saving new profile, p1
- BED_MESH_PROFILE SAVE=p1
- M117 Saving config now. Will restart klipper.
- SAVE_CONFIG
- #*# <---------------------- SAVE_CONFIG ---------------------->
- #*# DO NOT EDIT THIS BLOCK OR BELOW. The contents are auto-generated.
- #*#
- #*# [bed_mesh default]
- #*# version = 1
- #*# points =
- #*# -0.238125, -0.174375, -0.140625, -0.161250, -0.226875
- #*# -0.217500, -0.105000, -0.041250, -0.071875, -0.166250
- #*# -0.173750, -0.058125, 0.017500, -0.035000, -0.386250
- #*# -0.150625, -0.047500, 0.005625, -0.060625, -0.158750
- #*# -0.169375, -0.115625, -0.112500, -0.165000, -0.214375
- #*# tension = 0.2
- #*# min_x = 5.0
- #*# algo = lagrange
- #*# y_count = 5
- #*# mesh_y_pps = 2
- #*# min_y = 15.0
- #*# x_count = 5
- #*# max_y = 337.0
- #*# mesh_x_pps = 2
- #*# max_x = 310.0
- #*#
- #*# [bed_mesh p1]
- #*# version = 1
- #*# points =
- #*# -0.238125, -0.174375, -0.140625, -0.161250, -0.226875
- #*# -0.217500, -0.105000, -0.041250, -0.071875, -0.166250
- #*# -0.173750, -0.058125, 0.017500, -0.035000, -0.386250
- #*# -0.150625, -0.047500, 0.005625, -0.060625, -0.158750
- #*# -0.169375, -0.115625, -0.112500, -0.165000, -0.214375
- #*# tension = 0.2
- #*# min_x = 5.0
- #*# algo = lagrange
- #*# y_count = 5
- #*# mesh_y_pps = 2
- #*# min_y = 15.0
- #*# x_count = 5
- #*# max_y = 337.0
- #*# mesh_x_pps = 2
- #*# max_x = 310.0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement