Everytime I print, the nozzle prints 10mm above the bed. Ive tried using different slicers, adjusting my Z offsets. Is there something im missing?
- I adjusted z offset (commented out z and set my offsets)
- Stepper_z looks accurate
- Gcode copied from the klipper macro generator
- Start gcode pasted in Cura and I tried it with Orca too
NOTE:
Mercury 1.1 build
BL touch
SKR E3 V3
Phaetus rapido hotend
Bed spacers installed
[bltouch]
sensor_pin: ^PC14
control_pin: PA1
x_offset: -48
y_offset:-19
#z_offset: 0
speed: 10
pin_up_touch_mode_reports_triggered: False
[safe_z_home]
home_xy_position: 185, 175
speed: 150
z_hop: 10
z_hop_speed: 5
[stepper_z]
step_pin: PB0
dir_pin: !PC5
enable_pin: !PB1
microsteps: 16
rotation_distance: 4
endstop_pin: probe:z_virtual_endstop
position_max: 400
position_min: -10
homing_speed: 10
[gcode_macro START_PRINT]
gcode:
{% set BED_TEMP=params.BED_TEMP|default(60)|float %}
{% set EXTRUDER_TEMP=params.EXTRUDER_TEMP|default(200)|float %}
# Enables part cooling fan to stop duct from melting when waiting for bed temp
M106 S153
# Home the printer
G90
M83
G28
# Preheat the bed
M140 S{BED_TEMP}
M190 S{BED_TEMP}
M104 S200
# Z probing sequence
BED_MESH_CALIBRATE
BED_MESH_PROFILE LOAD=default
# Heat the extruder to the desired temperature
M104 S{EXTRUDER_TEMP}
M109 S{EXTRUDER_TEMP}