Пример #1
0
 public static void backward(int leftPower, int rightPower) {
   leftMotor.controlMotor(leftPower, backward);
   rightMotor.controlMotor(rightPower, backward);
 }
Пример #2
0
 public static void stop() {
   leftMotor.controlMotor(0, stop);
   rightMotor.controlMotor(0, stop);
 }