Programs: Difference between revisions

no edit summary
(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:
 
'''PR[5]=PR[2:Zero]'''
 
<br />
 
==== Intro Motion ====
Line 13 ⟶ 15:
'''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.
Line 22 ⟶ 26:
IF DI[104] = ON JMP LBL[7]
JMP LBL[8]
 
<br />
 
==== Configuration ====