What's new
VORON Design

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members!

Change homing order

orge

Member
I want to change the XY homing to YX how do I do this ?
I tried :
[safe_z_home]
gcode:
G28 Y0
G28 X0
G28 Z5
home_xy_position: 100,100 # 100,100 #205, 300 #-10,-10
speed:40
z_hop:10

but code is not accepted
 
yes.
you have to reimplement ALL your homing behavior in homing_override, at which point you no longer require safe_z_home
 
I want to change the XY homing to YX how do I do this ?
I tried :
[safe_z_home]
gcode:
G28 Y0
G28 X0
G28 Z5
home_xy_position: 100,100 # 100,100 #205, 300 #-10,-10
speed:40
z_hop:10

but code is not accepted

You’ll need to switch to homing override. However. If you want a quick way to get around this. Take that homing gcode you tried to use. And replace g28 in your print start macro with it. It will do the same thing.
 
Top