Re: Code changes not deploying to robot?
Quote:
Originally Posted by notmattlythgoe
(Post 1436111)
Try this:
Code:
myRobot.arcadeDrive(stick.getY(), stick.getX());
If that doesn't work try:
Code:
myRobot.arcadeDrive(stick.getY(), -stick.getX());
|
That fixed the problem! thank you so much for all the help :D
IF you wouldn't mind me picker your brain a little longer however, I notice that when We Drive the robot forward, the right motor turns starts sooner and goes faster, and when we drive it backwards the left one starts sooner and goes faster.
Could this be because we have all the motors motors hooked up with the same polarity, thus when one side of the motors are going forward, the other side's motors are technically going backwards causing a slight delay?
|