How do I tell X carve to move w/ command line?

In the advanced section of machine inspector, what is the code I type to move X,Y and Z?

Thanks in advance!

Depends on how you want it to move, but…

G0X10 will perform a rapid motion TO the location, X10, in your current work coordinate system by default.
G91 G0X10 will move the X ten units to the right because G91 sets relative motion mode. G90 sets absolute, the default. Careful switching to relative.

G0 is rapid
G1 moves at defined feedrate (must have one defined)

Those are the basics.

1 Like