hexagon logo

Null commands?

New to Quindos. Is there a NULL syntax that can be used in some fields?

Specifically, I'm looking to MOVCMM, in a specific coordinate system, to 100mm in Z, but not to move at all in X,Y, rather than moving to 0,0,100

Thanks in advance

  • The MOVCMM command has several arguments including "absolute or a "relative". Just select the relative option and enter a value in the axis / axes in which you wish the machine to move. In the code example below the TYP=DLT argument makes it a relative move and only needs a value in the axis which is to be moved, TYP=ABS would be absolute and would require you to enter a value for all axes.

    MOVCMM (TYP=DLT, DST=(, ,100))
    


    MOVCMM (RTP=0, TYP=ABS, DST=(0,0,100))