Programs: Difference between revisions

Content added Content deleted
(Created page with "Program structure for Fanuc robots is top down. That is, the instructions will run in order. Jumps will continue right after their destination LBL, CALLs will run from top to...")
 
No edit summary
Line 7: Line 7:


'''PR[5]=PR[2:Zero]'''
'''PR[5]=PR[2:Zero]'''

<br />


==== Intro Motion ====
==== Intro Motion ====
Line 13: Line 15:
'''J P[1:Home] 20% FINE'''
'''J P[1:Home] 20% FINE'''


<br />
==== Inputs ===

====Inputs ====


While inputs can be read anywhere in your program, it can be helpful to organize them into a small section that can be run through at points where it really matters.
While inputs can be read anywhere in your program, it can be helpful to organize them into a small section that can be run through at points where it really matters.
Line 22: Line 26:
IF DI[104] = ON JMP LBL[7]
IF DI[104] = ON JMP LBL[7]
JMP LBL[8]
JMP LBL[8]

<br />


==== Configuration ====
==== Configuration ====