tankDrive(leftValue, rightValue, 0);
}
public void tankDrive(double leftValue, double rightValue, int time) {
System.out.println("drive:" + leftValue + "\t" + rightValue);
Command c1 = new Command(-leftValue, time);
Command c2 = new Command(-rightValue, time);
getActuator("LeftJaguar1").enqueueCommand(c1);
getActuator("LeftJaguar2").enqueueCommand(c1);
getActuator("RightJaguar1").enqueueCommand(c2);
getActuator("RightJaguar2").enqueueCommand(c2);
}