Bed.g can I make Y move first, then X
-
I would like to have my first probe point to move the Y and then the X. the reason being is to avoid a bed clip location. can I just reverse them in the Bed.g file?
-
You should be able to just switch them in order. I believe the file executes as written. But you might want to move that clip before trying it.
-
You can put a G1 command in bed.g before the first G30 command, so that the move ot the first probe point starts from a suitable location.
-
thanks guys! I'll give it a go tonight
-
Here is my home all file. When homing they go in order Z,X,Y for my main move and for fine adjustment they go reversed.
; homeall.g
; called to home all axes
;; Relative positioning ; uncomment this line to lift the nozzle after homing
G91
; Course home Z
G1 Z725 F2500 S1
; Course home X
G1 X-675 F8000 S1
; Course home Y
G1 Y675 F8000 S1; Move away from the endstops
G1 X5 Y-5 F400
G1 Z-5 F400; Fine home X
G1 X-10 F400 S1
; Fine home Y
G1 Y10 F400 S1
;fine home Z
G1 Z10 f400 S1; Absolute positioning
G90