I will have a system of 2 robots with 1 controller. We have purchased the controller with Multimove Independent. What we would like to do is run the 2 robots, independently, with 2 different RAPID programs (modules/routines or whatever you’d like to call them), at the same time. They are far enough apart and do not need to be in sync, but need to run at the same time. Is this possible with 1 controller?
Robot 1 would have to run Module P1 and Robot 2 would run Module P2, both at the same time. Usually, RAPID code would be written as :
PROC main()
P1;
P2;
ENDPROC
But this will run P2 after P1. We do not want this. How can I run P1 and P2 at the same time? Thanks.