Hello All,
I am also having trouble stetting up Autobed Leveling / Mesh Compensation G29 using stall detection.
I manage create a Home All file successfully.
; homeall.g
; called to home all axes
G91 ; relative positioning
G1 Z5 F6000 S2 ; lift Z relative to current position
; x and y Sensor less homing
M400 ; make sure everything has stopped before we make changes
M913 X80 Y100 ; XY motors % current
M915 X S2 Y S3 R0 F0 ; set X and Y sensitivity, do nothing when stall, unfiltered
M574 X1 Y1 S3 ; set endstops to use motor stall
G1 S1 X-500 Y-500 F5000 ; move X and Y back, stopping at the end stop
M400 ; make sure everything has stopped
M913 X100 Y100 ; XY motors to 100% current
G90 ; back to absolute mode
G1 X250 Y250
; z Sensor less homing
M400 ; make sure everything has stopped before we make changes
M913 Z60 ; z motors % current
M915 Z S1 R0 F0 ; set Z sensitivity, do nothing when stall, unfiltered
M574 Z1 S3 ; set endstops to use motor stall
G1 S1 Z-150 F600 ; move Z back, stopping at the end stop
M400 ; make sure everything has stopped
M913 Z100 ; Z motor to 100% current
G90 ; back to absolute mode
G1 Z10
I am just not sure to set the Mesh compensation up correctly.
What do I need to do in my Config file?
Do I need to create additional files?
How do I set the current up and down before and after G29 command?
Any guidance would be helpful, thank you!
Jacques