G-code academy

G82 - Drilling Cycle with Dwell

Code G82 is for calling a pause drilling cycle. The following frame shows a typical format for this loop:

G82 Х10.0 Y15.3 Z-3.0 R0.5 P1000 F50.

X and Y determine the coordinates of the production holes. Z indicates the time of the drilling depth, the address of the waiting time at the bottom of the hole. The exposure time is indicated in milliseconds.
The G82 command is often used to drill blind holes, since the programmed waiting time provides better chip removal from the bottom of the hole.

G00X0Y0
M3 S6000
G00Z5
G82X10Y10Z-6R1P700
G01X20Y10
G01X30Y10
G82X40Y10Z-7R2P1000
G01X50Y10
G80
M5
G00X0Y0