Originally Posted by mcash3000 Does anyone know how to lock someone out of the geometry offset screen on Fanuc 16i controller. I have problems with operators changing geometry offsets either on purpose or by accident. |
Try this in the main program I use it for crash prevention and quality control
For tool # 12 LETS SAY IT HAS AN H VALUE OF 154.600mm
IF[#10012NE154.6]THEN#3000=12(WRONG OFFSET)
Now if you are not using preeset tools and your geometry changes with each tool change then you can change the program each time or you can manually put the H value into a seprerate varible # and compare them each cycle
IF[#10012NE#510]THEN#3000=12(WRONG OFFSET)
nOW DEPENDING ON THE MACHINE BUILDER YOU CAN TIE THE OFFSETE INTO THE EDIT KEY. Our Kittamuras require an edit key to make any offset changes but I have Makinos that I just monitor from the CNC with a macro as I do the Daewoe's We have.
This will compare the offset each cycle and then if the value has been changed the mesage will come up on screen
Or you can load the geometry from the main each cycle like this
#10012=154.6
This will overwrite the offset each cycle.
Now this is of corse as long as your operators do not have accsess to the edit mode. If they do I can show you how to put these protections into a 9000 program and password protect them
If you do not have the Macro option turned on I can send you those #'s they are 9000option paramaters
Bluesman