private AsynchronousPIDController turnControl;
private AsynchronousPIDController leftDriveControl;
private AsynchronousPIDController rightDriveControl;
public CBPWMTankDriveTrain(int lfpin, int rfpin, int gyropin, int LeftChanela, int LeftChanelb, int RightChanela, int RightChanelb) {
this(new GRTJaguar(lfpin), new GRTJaguar(rfpin), new GRTGyro(
gyropin, 5, "cangyro"), LeftChanela, LeftChanelb, RightChanela, RightChanelb);
}