new to the coding and try to learn.
What is the difference between VCS Motor.startRotateFor and Motor.RotateFor.
Thanks
new to the coding and try to learn.
What is the difference between VCS Motor.startRotateFor and Motor.RotateFor.
Thanks
The start.Rotate starts the motion is non-blocking, meaning it will go to the next line of code. RotateFor is blocking by default, so it will stay in the function until it is completed before moving on to the next line of code. There is an option to make it non-blocking
Hopefully, I got the explanation kind of right
Thanks. You make it really clear.