Hi all,
Can anyone shed any light on why this macro won't work. I'm just trying something simple (or so I thought) but it still won't rotate, it is now carrying out the G01 cycles 5 times and then stopping.
Very frustrating.
Cheers,
Scrap.
%
G71 G90 G40 G80
T03 M06
S1500 M03
G00 X0 Y0 Z10
#1=0
WHILE[#1LE360]DO1
G01 Z-10 F200
G01 X40 Y0 F200
G00 Z10
G00 X0
G68 X0 Y0 R#1
#1=#1+1
END1
M05
M30