Put all sensors in sensor package and update the import paths
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / subsystems / DriveTrain.java
CommitLineData
38a404b3
KZ
1package org.usfirst.frc.team3501.robot.subsystems;
2
3import org.usfirst.frc.team3501.robot.Constants;
33141cdd
KZ
4import org.usfirst.frc.team3501.robot.MathLib;
5import org.usfirst.frc.team3501.robot.commands.driving.JoystickDrive;
7670b3f4
KZ
6import org.usfirst.frc.team3501.robot.sensors.GyroLib;
7import org.usfirst.frc.team3501.robot.sensors.Lidar;
111dc444 8
38a404b3 9import edu.wpi.first.wpilibj.CANTalon;
111dc444 10import edu.wpi.first.wpilibj.CounterBase.EncodingType;
d9c04720 11import edu.wpi.first.wpilibj.DoubleSolenoid;
2aea5cc2 12import edu.wpi.first.wpilibj.DoubleSolenoid.Value;
111dc444 13import edu.wpi.first.wpilibj.Encoder;
b54ad73b 14import edu.wpi.first.wpilibj.I2C;
33141cdd
KZ
15import edu.wpi.first.wpilibj.RobotDrive;
16import edu.wpi.first.wpilibj.command.PIDSubsystem;
17
18public class DriveTrain extends PIDSubsystem {
96215d97
ME
19 private static double kp = 0.013, ki = 0.000015, kd = -0.002;
20 private static double gp = 0.018, gi = 0.000015, gd = 0;
33141cdd 21 private static double pidOutput = 0;
7a4df3c5
KZ
22
23 // PID Controller tolerances for the error
33141cdd 24 private static double encoderTolerance = 8.0, gyroTolerance = 5.0;
7a4df3c5
KZ
25
26 // Current Drive Mode Default Drive Mode is Manual
33141cdd
KZ
27 private int DRIVE_MODE = 1;
28
7a4df3c5 29 // Different Drive Modes
33141cdd 30 private static final int MANUAL_MODE = 1, ENCODER_MODE = 2, GYRO_MODE = 3;
38a404b3 31
1884c3cf 32 private Encoder leftEncoder, rightEncoder;
96215d97
ME
33
34 public static Lidar leftLidar;
35 public static Lidar rightLidar;
36
d7bf2340 37 private CANTalon frontLeft, frontRight, rearLeft, rearRight;
33141cdd
KZ
38 private RobotDrive robotDrive;
39
40 private GyroLib gyro;
d9c04720 41 private DoubleSolenoid leftGearPiston, rightGearPiston;
9e65c056
ME
42 // Drivetrain specific constants that relate to the inches per pulse value for
43 // the encoders
44 private final static double WHEEL_DIAMETER = 6.0; // in inches
45 private final static double PULSES_PER_ROTATION = 256; // in pulses
46 private final static double OUTPUT_SPROCKET_DIAMETER = 2.0; // in inches
47 private final static double WHEEL_SPROCKET_DIAMETER = 3.5; // in inches
48 public final static double INCHES_PER_PULSE = (((Math.PI)
49 * OUTPUT_SPROCKET_DIAMETER / PULSES_PER_ROTATION)
50 / WHEEL_SPROCKET_DIAMETER) * WHEEL_DIAMETER;
51
52 // Drivetrain specific constants that relate to the PID controllers
53 private final static double Kp = 1.0, Ki = 0.0,
54 Kd = 0.0 * (OUTPUT_SPROCKET_DIAMETER / PULSES_PER_ROTATION)
55 / (WHEEL_SPROCKET_DIAMETER) * WHEEL_DIAMETER;
71d73690 56
d7bf2340 57 public DriveTrain() {
9e65c056 58 super(kp, ki, kd);
33141cdd 59
d7bf2340
KZ
60 frontLeft = new CANTalon(Constants.DriveTrain.FRONT_LEFT);
61 frontRight = new CANTalon(Constants.DriveTrain.FRONT_RIGHT);
62 rearLeft = new CANTalon(Constants.DriveTrain.REAR_LEFT);
63 rearRight = new CANTalon(Constants.DriveTrain.REAR_RIGHT);
1884c3cf 64
33141cdd 65 robotDrive = new RobotDrive(frontLeft, rearLeft, frontRight, rearRight);
96215d97
ME
66
67 leftLidar = new Lidar(I2C.Port.kOnboard);
68 rightLidar = new Lidar(I2C.Port.kOnboard); // TODO: find port for second
69 // lidar
d7bf2340
KZ
70 leftEncoder = new Encoder(Constants.DriveTrain.ENCODER_LEFT_A,
71 Constants.DriveTrain.ENCODER_LEFT_B, false, EncodingType.k4X);
72 rightEncoder = new Encoder(Constants.DriveTrain.ENCODER_RIGHT_A,
73 Constants.DriveTrain.ENCODER_RIGHT_B, false, EncodingType.k4X);
45bdf5b9
KZ
74 leftEncoder.setDistancePerPulse(Constants.DriveTrain.INCHES_PER_PULSE);
75 rightEncoder.setDistancePerPulse(Constants.DriveTrain.INCHES_PER_PULSE);
33141cdd
KZ
76
77 leftEncoder.setDistancePerPulse(Constants.DriveTrain.INCHES_PER_PULSE);
78 rightEncoder.setDistancePerPulse(Constants.DriveTrain.INCHES_PER_PULSE);
79
80 gyro = new GyroLib(I2C.Port.kOnboard, false);
81
82 DRIVE_MODE = Constants.DriveTrain.ENCODER_MODE;
83 setEncoderPID();
84 this.disable();
85 gyro.start();
d004deee 86
d9c04720 87 leftGearPiston = new DoubleSolenoid(Constants.DriveTrain.LEFT_FORWARD,
7a4df3c5 88 Constants.DriveTrain.LEFT_REVERSE);
d9c04720
SC
89 rightGearPiston = new DoubleSolenoid(Constants.DriveTrain.RIGHT_FORWARD,
90 Constants.DriveTrain.RIGHT_REVERSE);
96215d97 91 Constants.DriveTrain.inverted = false;
d7bf2340
KZ
92 }
93
94 @Override
95 protected void initDefaultCommand() {
33141cdd
KZ
96 setDefaultCommand(new JoystickDrive());
97 }
98
7a4df3c5 99 // Print tne PID Output
33141cdd
KZ
100 public void printOutput() {
101 System.out.println("PIDOutput: " + pidOutput);
102 }
103
104 private double getAvgEncoderDistance() {
105 return (leftEncoder.getDistance() + rightEncoder.getDistance()) / 2;
106 }
107
7a4df3c5
KZ
108 // Whether or not the PID Controller thinks we have reached the target
109 // setpoint
33141cdd
KZ
110 public boolean reachedTarget() {
111 if (this.onTarget()) {
112 this.disable();
113 return true;
114 } else {
115 return false;
116 }
117 }
118
119 public void stop() {
120 drive(0, 0);
d7bf2340
KZ
121 }
122
123 public void resetEncoders() {
124 leftEncoder.reset();
125 rightEncoder.reset();
126 }
127
96215d97
ME
128 public double getLeftLidarDistance() {
129 return leftLidar.pidGet();
130 }
131
132 public double getsRightLidarDistance() {
133 return rightLidar.pidGet();
134 }
135
d7bf2340 136 public double getRightSpeed() {
6833a887 137 return rightEncoder.getRate(); // in inches per second
d7bf2340
KZ
138 }
139
140 public double getLeftSpeed() {
6833a887 141 return leftEncoder.getRate(); // in inches per second
d7bf2340
KZ
142 }
143
144 public double getSpeed() {
6833a887 145 return (getLeftSpeed() + getRightSpeed()) / 2.0; // in inches per second
d7bf2340
KZ
146 }
147
d7bf2340 148 public double getRightDistance() {
6833a887 149 return rightEncoder.getDistance(); // in inches
d7bf2340
KZ
150 }
151
d7bf2340 152 public double getLeftDistance() {
6833a887 153 return leftEncoder.getDistance(); // in inches
d7bf2340
KZ
154 }
155
7a4df3c5
KZ
156 // Get error between the setpoint of PID Controller and the current state of
157 // the robot
33141cdd
KZ
158 public double getError() {
159 if (DRIVE_MODE == Constants.DriveTrain.ENCODER_MODE)
160 return Math.abs(this.getSetpoint() - getAvgEncoderDistance());
161 else
162 return Math.abs(this.getSetpoint() + getGyroAngle());
d7bf2340
KZ
163 }
164
33141cdd
KZ
165 public double getGyroAngle() {
166 return gyro.getRotationZ().getAngle();
167 }
168
169 public void resetGyro() {
170 gyro.reset();
171 }
172
173 public void printEncoder(int i, int n) {
174 if (i % n == 0) {
175 System.out.println("Left: " + this.getLeftDistance());
176 System.out.println("Right: " + this.getRightDistance());
177
178 }
179 }
180
181 public void printGyroOutput() {
182 System.out.println("Gyro Angle" + -this.getGyroAngle());
183 }
184
7a4df3c5
KZ
185 /*
186 * returns the PID output that is returned by the PID Controller
187 */
33141cdd
KZ
188 public double getOutput() {
189 return pidOutput;
190 }
191
7a4df3c5 192 // Updates the PID constants based on which control mode is being used
33141cdd
KZ
193 public void updatePID() {
194 if (DRIVE_MODE == Constants.DriveTrain.ENCODER_MODE)
9e65c056 195 this.getPIDController().setPID(kp, ki, kd);
33141cdd 196 else
9e65c056 197 this.getPIDController().setPID(gp, gd, gi);
33141cdd
KZ
198 }
199
200 public CANTalon getFrontLeft() {
201 return frontLeft;
202 }
203
204 public CANTalon getFrontRight() {
205 return frontRight;
206 }
207
208 public CANTalon getRearLeft() {
209 return rearLeft;
210 }
211
212 public CANTalon getRearRight() {
213 return rearRight;
214 }
215
216 public int getMode() {
217 return DRIVE_MODE;
218 }
219
7a4df3c5
KZ
220 /*
221 * Method is a required method that the PID Subsystem uses to return the
222 * calculated PID value to the driver
96215d97 223 *
7a4df3c5
KZ
224 * @param Gives the user the output from the PID algorithm that is calculated
225 * internally
96215d97 226 *
7a4df3c5
KZ
227 * Body: Uses the output, does some filtering and drives the robot
228 */
33141cdd
KZ
229 @Override
230 protected void usePIDOutput(double output) {
231 double left = 0;
232 double right = 0;
233 if (DRIVE_MODE == Constants.DriveTrain.ENCODER_MODE) {
234 double drift = this.getLeftDistance() - this.getRightDistance();
235 if (Math.abs(output) > 0 && Math.abs(output) < 0.3)
236 output = Math.signum(output) * 0.3;
237 left = output;
9e65c056 238 right = output + drift * kp / 10;
96215d97 239 } else if (DRIVE_MODE == Constants.DriveTrain.GYRO_MODE) {
33141cdd
KZ
240 left = output;
241 right = -output;
242 }
243 drive(left, right);
244 pidOutput = output;
d7bf2340
KZ
245 }
246
33141cdd
KZ
247 @Override
248 protected double returnPIDInput() {
249 return sensorFeedback();
d7bf2340 250 }
33141cdd 251
7a4df3c5
KZ
252 /*
253 * Checks the drive mode
96215d97 254 *
7a4df3c5
KZ
255 * @return the current state of the robot in each state
256 * Average distance from both sides of tank drive for Encoder Mode
257 * Angle from the gyro in GYRO_MODE
258 */
33141cdd
KZ
259 private double sensorFeedback() {
260 if (DRIVE_MODE == Constants.DriveTrain.ENCODER_MODE)
261 return getAvgEncoderDistance();
262 else if (DRIVE_MODE == Constants.DriveTrain.GYRO_MODE)
263 return -this.getGyroAngle();
264 // counterclockwise is positive on joystick but we want it to be negative
265 else
266 return 0;
267 }
268
7a4df3c5
KZ
269 /*
270 * @param left and right setpoints to set to the left and right side of tank
271 * inverted is for Logan, wants the robot to invert all controls left = right
272 * and right = left
273 * negative input is required for the regular rotation because RobotDrive
274 * tankdrive method drives inverted
275 */
33141cdd 276 public void drive(double left, double right) {
9e65c056 277 robotDrive.tankDrive(-left, -right);
33141cdd 278 // dunno why but inverted drive (- values is forward)
96215d97
ME
279 if (!Constants.DriveTrain.inverted)
280 robotDrive.tankDrive(-left,
281 -right);
282 else
283 robotDrive.tankDrive(right, left);
33141cdd
KZ
284 }
285
7a4df3c5
KZ
286 /*
287 * constrains the distance to within -100 and 100 since we aren't going to
288 * drive more than 100 inches
96215d97 289 *
7a4df3c5 290 * Configure Encoder PID
96215d97 291 *
7a4df3c5
KZ
292 * Sets the setpoint to the PID subsystem
293 */
33141cdd
KZ
294 public void driveDistance(double dist, double maxTimeOut) {
295 dist = MathLib.constrain(dist, -100, 100);
296 setEncoderPID();
297 setSetpoint(dist);
298 }
299
7a4df3c5
KZ
300 /*
301 * Sets the encoder mode
302 * Updates the PID constants sets the tolerance and sets output/input ranges
303 * Enables the PID controllers
304 */
33141cdd
KZ
305 public void setEncoderPID() {
306 DRIVE_MODE = Constants.DriveTrain.ENCODER_MODE;
307 this.updatePID();
308 this.setAbsoluteTolerance(encoderTolerance);
309 this.setOutputRange(-1.0, 1.0);
310 this.setInputRange(-200.0, 200.0);
311 this.enable();
312 }
313
7a4df3c5
KZ
314 /*
315 * Sets the Gyro Mode
316 * Updates the PID constants, sets the tolerance and sets output/input ranges
317 * Enables the PID controllers
318 */
33141cdd
KZ
319 private void setGyroPID() {
320 DRIVE_MODE = Constants.DriveTrain.GYRO_MODE;
321 this.updatePID();
9e65c056 322 this.getPIDController().setPID(gp, gi, gd);
33141cdd
KZ
323
324 this.setAbsoluteTolerance(gyroTolerance);
325 this.setOutputRange(-1.0, 1.0);
326 this.setInputRange(-360.0, 360.0);
327 this.enable();
328 }
329
7a4df3c5
KZ
330 /*
331 * Turning method that should be used repeatedly in a command
96215d97 332 *
7a4df3c5
KZ
333 * First constrains the angle to within -360 and 360 since that is as much as
334 * we need to turn
96215d97 335 *
7a4df3c5
KZ
336 * Configures Gyro PID and sets the setpoint as an angle
337 */
33141cdd
KZ
338 public void turnAngle(double angle) {
339 angle = MathLib.constrain(angle, -360, 360);
340 setGyroPID();
341 setSetpoint(angle);
342 }
343
344 public void setMotorSpeeds(double left, double right) {
345 // positive setpoint to left side makes it go backwards
346 // positive setpoint to right side makes it go forwards.
347 frontLeft.set(-left);
348 rearLeft.set(-left);
349 frontRight.set(right);
350 rearRight.set(right);
351 }
352
7a4df3c5
KZ
353 /*
354 * @return a value that is the current setpoint for the piston
355 * kReverse or kForward
356 */
2a099bc6
KZ
357 public Value getLeftGearPistonValue() {
358 return leftGearPiston.get();
359 }
360
7a4df3c5
KZ
361 /*
362 * @return a value that is the current setpoint for the piston
363 * kReverse or kForward
364 */
2a099bc6
KZ
365 public Value getRightGearPistonValue() {
366 return rightGearPiston.get();
367 }
368
7a4df3c5
KZ
369 /*
370 * Changes the ball shift gear assembly to high
371 */
2a099bc6
KZ
372 public void setHighGear() {
373 changeGear(Constants.DriveTrain.HIGH_GEAR);
374 }
375
7a4df3c5
KZ
376 /*
377 * Changes the ball shift gear assembly to low
378 */
2a099bc6
KZ
379 public void setLowGear() {
380 changeGear(Constants.DriveTrain.LOW_GEAR);
381 }
382
7a4df3c5
KZ
383 /*
384 * changes the gear to a DoubleSolenoid.Value
385 */
2a099bc6
KZ
386 public void changeGear(DoubleSolenoid.Value gear) {
387 leftGearPiston.set(gear);
388 rightGearPiston.set(gear);
389 }
38a404b3 390}