;----------------------------------------------- ; AKKON CNC example file ; ; The file can be executed on a CNC milling Machine ; (c)2009-2016 AkkonDesk, Gerhard Burger ; For updates check www.burger-web.com ; Simple example of a milled plate demonstarating ; Hole-, D-Sub-, pocket-, engraving and contour ; processing ; ---------------------------------------------- ; create drill holes T04 M03 M08 G81 Z6 B3 F1000 H3 ; define drill cyclce G79 x10 y10 z1 ; move to Position G79 y70 z1 G79 x110 z1 G79 y10 z1 M09; cooling system off ;-------------------- create D-Sub hole T03 M03 M08 G88 X30 Y40 Z0.5 R3 L19 B11 Q0 U4 V1 W0.1 F5000 E1000 ; and the drills G81 Z5 B3 F1000 H3 ; define drill cyclce G79 x15 y40 z1 ; move to Position G79 x45 z1 M09; cooling system off ;-------------------- engrave text T00 M03 M08 G00 X60 Y15 G67 A8 O0 H5 G68 C1 D1 G66 X60 Y15 Z1 @"Akkon Example" E1.15 R1 P1 M09; cooling system off ; create pocket hole T05 M03 M08 G85 X80 Y45 Z0 L40 B20 R6 U5 W0.1 V3 Q45 F5000 E1000 K2 safety distance 2 mm ;-------------------- create outline shape G41 ; enable radius compensation G00 Z5 G00 X-7 Y32 G01 Z-1 G03 X0 Y39 i0 j7 G01 Y75 G02 X5 Y80 i5 j0 G01 X115 G02 X120 Y75 i0 j-5 G01 Y5 G02 X115 Y0 i-5 j0 G01 X5 G02 X0 Y5 i0 j5 G01 Y40 G01 Z-5 ; second turnaround G01 Y75 G02 X5 Y80 i5 j0 G01 X115 G02 X120 Y75 i0 j-5 G01 Y5 G02 X115 Y0 i-5 j0 G01 X5 G02 X0 Y5 i0 j5 G01 Y41 G03 X-7 Y48 i-7 j0 G00 Z20 G00 Y80 M30