mirror of
https://github.com/trc492/FtcTemplate.git
synced 2025-07-01 04:51:23 -07:00
Minor fix: initialized the variable properly.
This commit is contained in:
@ -100,9 +100,9 @@ public class FtcTest extends FtcTeleOp
|
||||
private double prevTime = 0.0;
|
||||
private double prevVelocity = 0.0;
|
||||
// Tune Drive PID.
|
||||
private TrcPose2D tuneDriveStartPoint;
|
||||
private TrcPose2D tuneDriveEndPoint;
|
||||
private boolean tuneDriveAtEndPoint;
|
||||
private TrcPose2D tuneDriveStartPoint = null;
|
||||
private TrcPose2D tuneDriveEndPoint = null;
|
||||
private boolean tuneDriveAtEndPoint = false;
|
||||
// Swerve Steering Calibration.
|
||||
private boolean steerCalibrating = false;
|
||||
private boolean teleOpControlEnabled = true;
|
||||
|
Reference in New Issue
Block a user