Controls jogging movement for a specific axis.
Supports both step and continuous jogging.
A fourth parameter can adjust the jog step size or rounding.
jog_axis(step, axis, direction) jog_axis(step, axis, direction, param)
Step jog axis 0 (X) in the positive direction
jog_axis(1, 0, 1);
Continuous jog axis 2 (Z) at half speed
jog_axis(0, 2, 0.5);
Step jog axis 1 (Y) in the negative direction with a custom step size 0.5mm
jog_axis(1, 1, -1, 0.5);