03-07-2012 08:03 AM
I have built a LabVIEW program to run the 3 nxt motor but the program wont run them all at one. they are placed in a for loop (to run ten times) but it carries out 10 iterations on the first motor the switches to the second an switches to the third why?? These two ways wont work
03-12-2012 04:59 AM
Hello,
I think the problem is because the NXT's processor can only process one thread at a time. It cannot handle multiple threads and schedule time for each one (there is only 1 processing core). This is why the loops have to occur in sequence.
You will need to start each motor in sequence - this will happen very fast however!
Regards,