Changed rotation amount when a ROTATE_90 message is received.

This commit is contained in:
2014-06-25 16:11:51 -04:30
parent a2ca1382e6
commit ab327cbf15

View File

@@ -125,7 +125,7 @@ public class MotorControlThread extends Thread{
if(rotate90){ if(rotate90){
// Rotate 90 degrees. // Rotate 90 degrees.
System.out.println("ROTATE 90"); System.out.println("ROTATE 90");
Motor.B.rotate(90, false); Motor.B.rotate(-120, false);
} }
}catch(IOException io){ }catch(IOException io){