canGyro.start();
leftEncoder.start();
rightEncoder.start();
turnControl = new AsynchronousPIDController(new PIDController(turnP,
turnI, turnD, canGyro, this));
leftDriveControl = new AsynchronousPIDController(new PIDController(
driveP, driveI, driveD, leftEncoder, this));
rightDriveControl = new AsynchronousPIDController(new PIDController(
driveP, driveI, driveD, rightEncoder, this));
pointTurn = true;
leftDriveControl.addPIDListener(this);
rightDriveControl.addPIDListener(this);
turnControl.addPIDListener(this);