Post by RobHi folks
Fanuc 21i. Is it possible to select a screen display which shows the variable
addresses along with their contents. ie a display which shows say #2001 and
its value? If so, how?
I know for this example I can look at the offset/setting screen but this
doesn't reference the variable number.
Thanks
Rob
Another way is to create a program that sets the values of user values to those
of system values. Then you can look at them. For Example:
%
O6969
#501=#2001
#502=#2002
#503=#2003
#504=#2004
#505=#2005
#506=#2006
#507=#2007
...
...
M30
%
Off the top of my head I don't know if those 2000 series #s listed are real
registers in the machine or not, but you get the idea.
You can also use the 100 series:
%
O6969
#101=#2001
#102=#2002
#103=#2003
#104=#2004
#105=#2005
#106=#2006
#107=#2007
...
...
M30
%
This series may or may not clear when you hit reset, depending on how you have
your parameters set.
You can even use the more volatile series
%
O6969
#1=#2001
#2=#2002
#3=#2003
#4=#2004
#5=#2005
#6=#2006
#7=#2007
...
...
(up to 33 most controls)
M30
%
This series clears on reset on most controls.
Anyway, after you run such a program, (which causes no machine movement, so no
worries) you look at the user variable listing, which is a sub-menu of the
offset menu. Sometimes you have to hut for it, some combination of the page &
"Oper" soft keys.
There is no real risk as long as:
1) You don't end up overwriting a user variable which is being used for
something. For example, if you have a probe, pallet system, etc., the software
used to control these things often makes use of the user variables. In my
example I started with #501 to make it easy to remember that that refers to
#2001, but #501 might be "taken" by your probe or pallet software. That is one
of the advantages of using the 100 or 1-2-3 series.
2) Always put the USER variable on the LEFT, and the SYSTEM variable on the
right!
Have fun.
If you want to discuss this more email me robustus at newsguy dot com.
-plh
--
Where are we going and why am I in this HAND BASKET??