Disclaimer: CNC Concepts, Inc. accepts no responsibility for the use
or misuse of techniques shown in this web page. We simply publish information
we feel will be of interest to CNC users. In all cases, the reader is totally
responsible for considering the implications, good and bad, of implementing one
or more of the techniques we show.
A letter engraving custom macro
by Bruce Litton
Here is a letter engraving program that will engrave the letters A-Z (any
size) for any Fanuc or Fanuc compatible control having custom macro B. The
control system we currently have is the Yasnac MX3, (programs should work on
Fanuc 10m,11m,16m,18m controls). Without the control option for scaling the
task of making letters of different size was challenge!
Instructions for use:.
O7000 is an example program that engraves the word "HELLO". We'll
use it to explain the use of variables:
%
O7000(MASTER ENGRAVING PROGRAM)
G90G54J1
N10M3S8000
G90G0X-.2Y0. M8
G43H20Z3.
#503=1.000
#500=[#503/1.782]
#501=.100
#502=1.000
G65P7001A8.0B-0.02C15.0D40.0E1.0 (H)
G65P7001A5.0B-.02C15.0D40.0E1.0 (E)
G65P7001A12.0B-.02C15.0D40.0E1.0 (L)
G65P7001A12.0B-.02C15.0D40.E01.0 (L)
G65P7001A15.0B-.02C15.0D40.0E0.0 (O)
N20M98P8998 M30
%
NOTE: You can keep from having to retype all of the commands in these
programs by using your Internet browser's copy function. Simply highlight the
program, copy it, and then open your word processor or CNC text editor. Use the
paste function to bring the program into your text editor. While there will be
some editing to do (you'll likely have to eliminate some funny characters and
add carriage returns), this will save a lot of typing!
Understanding program O7000
Program O7000 contains instructions and calculations for the CNC control.
Variables used in G65 commands:
A=Code number for letter (0=SPACE, 1.-A, 2.-B, 3.-C, etc., see full list
below)
B=Z depth from program zero
C=Plunging feedrate for the Z axis
D=XY feedrate
E=Step over for next letter? (1.=YES,0.=NO)
#503 before the G65 commands is the letter height (1.0 inch in the example)
#500, #501, #502 set the width and aspect ratio for the letters. You can
leave them as shown in the example.
The command "G65P7001A8.0B-0.02C15.0D40.0E1.0" will machine the
letter H (see code list for A word below). It will be machined 0.02 deep in Z,
plunged at 15.0 ipm and machined (XY) at 40.0 ipm. The E1.0 specifies that the
machine must move over by the letter spacing to get ready for machining the
next letter. If E is set to zero (as it should be after your last letter),
there will be no move over after the letter is machined.
Code numbers are as follows:
SPACE-0. A-1. B-2. C-3. D-4. E-5. F-6. G-7. H-8. I-9. J-10. K-11. L-12.
M-13. N-14. O-15. P-16. Q-17. R-18. S-19. T-20. U-21. V-22. W-23. X-24. Y-25.
Z-26. (Note that you must include a decimal point after each code number in the
A word.)
The lettering program
Program O7001 contains all the lettering movements.