Code: Select all
G29 Auto Bed Leveling
?Probe position out of range.
?Probe position out of range.
I've tried also to move G28 G29 lines up or down at start of gcode, with no results.
By intuition placed G4 command before and after G29 and now it works!!
In Slic3r/Printer Settings/Custom gcode/Start g-code textbox I've placed the following code
Code: Select all
G28 ; home all axes
G4 P500 ;PAUSE 500ms to prevent ABL failure - motherboard need time to understand :D
G29; Auto-calibration
G4 P100 ;PAUSE 100ms to prevent ABL failure - G0 G1 codes after G29 make it failure!
G0 Z50 F3000 ; lift nozzle
All problems seemed solved... But no!! With ABL functioning correctly now,
prints are not parallel to bed, but slanted so that it adheres only to one side
Are there any solutions?