Dear Henrik,
Watching to this Fanta can challenge video (http://www.abb.com/product/seitp327/f0cec80774b0b3c9c1256fda00409c2c.aspx) I saw that when the operator moves the joystick all the robots move together. In my Multimove system that does not happen. So, I realy think I’, missing something in the configuration os the system.
Can you provide me an example of a program using this kind of coordenation?
I advance, I post here the pieces of my code where I tried to configure the multimove:
! Workpiece robot:
PERS wobjdata wSNews02_R1:=[FALSE,TRUE,“”,[[1347,0,0],[0.50833,0.508325,-0.491536,-0.491528]],[[-0.0009375,-0.00280142,0.000715256],[1,-3.06331E-06,-2.29495E-06,-1.10501E-05]]];
PERS tooldata tR1_FFScanC01:=[TRUE,[[0,0,405],[0.9239,0,0,0.3827]],[0.5,[0,0,250],[1,0,0,0],0,0,0]];
PERS robtarget pIniSN02 := [[0,0,50],[0,0,1,0],[0,0,0,1],[9E+09,9E+09,9E+09,9E+09,9E+09,9E+09]];
PERS tasks Task_list{2} := [ [“T_ROB1”], [“T_ROB2”] ];
PROC Main()
IF NOT(IsSyncMoveOn()) THEN
SyncMoveOn SyncOn, Task_list;
ENDIF
ClearPath;
StartMove;
ENDPROC
! Tool robot:
PERS wobjdata w_SNews03_R2:=[FALSE,FALSE,“ROB_1”,[[1000,0,00],[0,0,0,1]],[[0.0001177,-0.00143051,0],[1,1.91842E-06,-5.31972E-06,1.16336E-05]]];
PERS tooldata tFFScan03 := [TRUE,[[0,0,405],[1,0,0,0]],[0.5,[0,0,250],[1,0,0,0],0,0,0]];
PERS robtarget pInicioR2:=[[0,0,300],[1,0,0,0],[0,0,0,1],[9E+09,9E+09,9E+09,9E+09,9E+09,9E+09]];
PERS tasks Task_list{2} := [ [“T_ROB1”], [“T_ROB2”] ];
PROC Main ()
IF NOT(IsSyncMoveOn()) THEN
SyncMoveOn SyncOn, Task_list;
ENDIF
ClearPath;
StartMove;
ENDPROC
Can you see anything wrong in this declaration? Is there anything else I should have done?
Thanks a lot
Leo