I found this as a discription to level BL Touch
; preheat for working temperatures
M502 ; optionally reset to firmware settings
M500; save
M851 Z0 ; reset any z-offset
G28 ; home all
G1 X117 Y117 ; move nozzle in center
M211 S0 ; disable software endstop (optionally, if not disabled via configuration.h)
; now move your nozzle manually onto the bed such that it (strongly) grips paper.
G92 Z0 ; tell the printer that this is Z = 0
G30 X117 Y117 ; move the sensor over the center and let it trigger
; note what z position G30 reports, that, negated, is your z offset
Code: Select all
SENT: G30 X117 Y117
READ: Bed X: 117.00 Y: 117.00 Z: 3.60
M500 ; store those values into the EEPROM
M211 S1 ; enable software endstop (optionally, if not disabled via configuration.h)
After leveling i send G28, G92 in the start gcode
It centers, it levels, but if checking with G1 Z0 it ist to near to the bed not enough space for the peace of paper i used for leveling
Where is my fail?