Esempio n. 1
0
 public static void backward(int leftPower, int rightPower) {
   leftMotor.controlMotor(leftPower, backward);
   rightMotor.controlMotor(rightPower, backward);
 }
Esempio n. 2
0
 public static void stop() {
   leftMotor.controlMotor(0, stop);
   rightMotor.controlMotor(0, stop);
 }