by laki » Fri Aug 14, 2020 7:22 pm
When drilling holes with plasma, in fact there is no movement of the machine (along the x or y axis), so the lack of ARC OK signal has nothing to stop.
Try inserting a little movement for the x or y axis in the G code after M3.
For example instead of:
N0130 (Operation: Drill, DRILL, T103: finecut 16g steel, 0 in Deep)
N0140 G00 X1.1675 Y1.4567 Z1.5000
N0150 M1031 (TouchOff)
N0160 G00 Z0.1500
N0170 M03 (Torch Fire)
N0180 G04 P0.400
N0190 G01 X1.1675 Y1.4567 Z0.0600 F150.0
N0200 M05 (Torch Off)
Try this:
N0130 (Operation: Drill, DRILL, T103: finecut 16g steel, 0 in Deep)
N0140 G00 X1.1675 Y1.4567 Z1.5000
N0150 M1031 (TouchOff)
N0160 G00 Z0.1500
N0170 M03 (Torch Fire)
N0180 G01 X1.1676 Y1.4567 // x moved by 0.0001
N0190 G04 P0.400
N0200 G01 Z0.0600 F150.0
N0210 M05 (Torch Off)