Hi Peter,
The tokens 'M' are Miscellaneous and not specific M Codes. For M03, enter ' M03' for the label and 0 fror decimal places. Save as any Misc Token. M02 is best put in the Footer after any other safety blocks are added.
For each type of movement (Linear etc.) there are two scripts that need to be defined. The first (single move) is for the first non-modal occurance of that GCode. The second is for each successive identical GCode...
G01 X2Y3Z4 (first occurance)
G01 X5Y6Z7 (second)
G0 X0Y0Z0 (first)
G1 X2Y3Z4 (first, Non G1 before it)
G1 X5Y6Z7 (second)
G1 X1Y2Z3 (third, uses second script)
It is easiest for beginners to create the same identical movement script for 'Continuous' moves as was created for the 'Single Move' and not use any Modal commands. Later, after you get the hang of it, you can make the Tokens Modal if you like. |