Hello,
I would like to approach the pick point with an offset in the tool axis. So far I have done it this way.
Code
DECL E6POS TOffset
TOffset= {X 0,Y 0,Z -200,A 0,B 0,C 0,E1 0,E2 0,E3 0,E4 0,E5 0,E6 0}
SPTP XP1 : TOffset
SLIN P1
But currently I have an additional linear axis and when the robot is out of range in this axis I am not able to reach it using the given method. Then I have to use the notation:
Code
DECL E6POS TOffset
TOffset= {X 0,Y 0,Z -200,A 0,B 0,C 0,E1 0,E2 0,E3 0,E4 0,E5 0,E6 0}
TOffset.E1 = XP1.E1
SPTP XP1 : TOffset
SLIN P1
Could someone explain to me why I have to do it this way and make an additional record of rewriting the E1 axis value?
Thank you in advance and best regards
Kamil