Print Friendly, PDF & Email

PMPA Craftsman Cribsheet #131:
FANUC Macro Programming Basics

Published September 1, 2024

By David Wynn, Technical Services Manager, PMPA

Download/View Cribsheet

 

 

Macros are an essential part of high-production CNC programing because they allow for blocks of code to be simplified. They also allow programs to easily be used on
families of parts. Macros can even make code more accurate and precise.

Like writing a function in traditional programming, using macro variables in G code can allow a programmer to create repeatable blocks of code that are proven. A macro is a container that holds a value. Using macros changes what the code does but not the underlying process. A programmer must only figure out the details once then let the controller process the math involved in producing the tool path. Let’s look at the basic structure of FANUC macros.

Null means no value. It does not mean zero. Think of a variable as a container. When it is null, that means the container is empty. Some of these ranges vary by controller. Some manufacturers change the address system to match how they utilize the control. This may limit the range of addresses available or change their behavior. For example: Some controllers change the value of #1-33 values to null after the program has executed. The values for #100-199 are local to the program or channel in use but are persistent until power off . In practice #100 in Channel 1 and #100 in Channel 2 can have different values. In practice, #100 in Channel 1 and #100 in Channel 2 can have different values. (Check your controller’s manual to see exactly how your machine works.) I call this “executional persistency.”
They persist in memory through multiple loops of a program but are volatile because they are reset to null at power off. The values of #500-999 are the same value across the control. Putting a #500=1 allows that value to be called by multiple channels and subprograms and receive the value of “1”. This is powerful because values can be shared between subprograms and changed, then pass the new value back to the original program.

The WHILE loop in the example acts as a subprogram and runs through this code until the condition is met, simplifying the code process. Since the code for each flat is combined in this block, a change affects all flats equally. A programmer does not have to go through the code and find all six places and change it manually. This
program is utilizing a #100 variable local to this channel and program.

Macros are a powerful way to level up a CNC program. Using advanced programming techniques allows programmers to simplify complex tasks. Once a block of code is designed, it can be utilized on multiple programs. Code reusability is key to accurate and precise programming. Humans make mistakes but when we use proven systems (reusable code for example), we increase our ability to perform.

 

 

 

 

Author

David Wynn

David Wynn, MBA, is the PMPA Technical Services Manager with over 20 years of experience in the areas of manufacturing, quality, ownership, IT and economics. Email: gro.apmp@nnywd — Website: pmpa.org.