Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- [mcu]
- serial: /dev/serial/by-id/usb-1a86_USB_serial-if00-port0
- restart_method: command
- [printer]
- kinematics: cartesian
- max_velocity: 500
- max_accel: 3000
- max_z_velocity: 5
- max_z_accel: 100
- square_corner_velocity: 5
- # Use those higher values just to configure Input Shaper
- #max_accel: 10000
- #max_accel_to_decel: 10000
- [stepper_x]
- step_pin: !PC12
- dir_pin: PB3
- enable_pin: !PD2
- microsteps: 16
- rotation_distance: 40
- endstop_pin: PA13
- position_endstop: 0
- position_max: 235
- homing_speed: 50
- [stepper_y]
- step_pin: PC11
- dir_pin: PA15
- enable_pin: !PC10
- microsteps: 16
- rotation_distance: 40
- endstop_pin: PB8
- position_endstop: 0
- position_max: 235
- homing_speed: 50
- [stepper_z]
- step_pin: PC7
- dir_pin: !PC9
- enable_pin: !PC8
- rotation_distance: 8
- microsteps: 16
- position_min: -2
- position_max: 280
- # If you use "z_virtual_endstop", please set "homing_speed" and "second_homing_speed" to avoid banging the nozzle to fast
- endstop_pin: probe:z_virtual_endstop # Use Z- as endstop
- homing_speed: 3.0
- second_homing_speed: 0.3
- homing_retract_dist: 2.0
- # If you use "z sensor pin", you have to set the position_endstop
- #endstop_pin: !PC14
- # Use the UI and the piece of paper to slowly go down and find the proper position
- #position_endstop = 6.000
- [extruder]
- max_extrude_only_distance: 100.0
- step_pin: PB10
- dir_pin: PB1
- enable_pin: !PC6
- microsteps: 16
- nozzle_diameter: 0.400
- filament_diameter: 1.750
- heater_pin: PA6
- sensor_type: EPCOS 100K B57560G104F
- sensor_pin: PC1
- min_temp: 0
- max_temp: 250
- # Calibrate E-Steps https://www.klipper3d.org/Rotation_Distance.html#calibrating-rotation_distance-on-extruders
- rotation_distance: 24
- # Calibrate PID: https://www.klipper3d.org/Config_checks.html#calibrate-pid-settings
- # - Example: PID_CALIBRATE HEATER=extruder TARGET=200
- control = pid
- pid_kp = 30.356
- pid_ki = 1.857
- pid_kd = 124.081
- # Calibrate PA: https://www.klipper3d.org/Pressure_Advance.html
- #pressure_advance = 0.600
- [heater_bed]
- heater_pin: PA5
- sensor_type: EPCOS 100K B57560G104F
- sensor_pin: PC0
- max_temp: 110
- min_temp: 0
- # Calibrate PID: https://www.klipper3d.org/Config_checks.html#calibrate-pid-settings
- # - Example: PID_CALIBRATE HEATER=heater_bed TARGET=60
- control = pid
- pid_kp = 64.230
- pid_ki = 0.723
- pid_kd = 1425.905
- [heater_fan hotend_fan]
- pin: PA7
- heater: extruder
- heater_temp: 50.0
- [fan]
- pin: PB0
- [force_move]
- enable_force_move: True
- [safe_z_home]
- home_xy_position: 110,110
- z_hop: 10
- [probe]
- pin: !PC13
- speed: 0.3
- lift_speed: 5.0
- samples: 2
- # Calibrate probe: https://www.klipper3d.org/Bed_Level.html
- # - Example: PROBE_CALIBRATE, then adjust with TESTZ Z=+/-X
- z_offset = -0.100
- activate_gcode: TARE_PROBE
- deactivate_gcode: TARE_PROBE
- [gcode_macro TARE_PROBE]
- gcode:
- G4 P250
- [filament_motion_sensor filament_sensor]
- extruder: extruder
- pause_on_runout: true
- switch_pin: PB4
- [bed_mesh]
- speed: 50
- horizontal_move_z: 4.0
- mesh_min: 20,20
- mesh_max: 200,200
- probe_count: 4,4
- algorithm: bicubic
- fade_start: 1
- fade_end: 10
- fade_target: 0
- [input_shaper]
- # Calibrate IS: https://www.klipper3d.org/Resonance_Compensation.html
- shaper_type_y = mzv
- shaper_freq_y = 38.2
- shaper_type_x = ei
- shaper_freq_x = 79.6
- [temperature_sensor raspberry_pi]
- sensor_type: temperature_host
- #min_temp: 10
- #max_temp: 105
- [temperature_sensor mcu_temp]
- sensor_type: temperature_mcu
- sensor_temperature1: 25
- sensor_adc1: 0.210317
- #min_temp: 0
- #max_temp: 105
- [gcode_macro M420]
- description: Load the current mesh
- gcode:
- BED_MESH_PROFILE LOAD=default
- [gcode_macro G29]
- description: creates automated homing and bed mesh
- gcode:
- G28
- BED_MESH_CALIBRATE
- DATA_SAVE
Advertisement
Add Comment
Please, Sign In to add comment