Finish implementing MaintainClimbedPosition
[3501/2017steamworks] / 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;
5483fde9 4import org.usfirst.frc.team3501.robot.commands.driving.JoystickDrive;
04f2cb52 5
a1c76caf
CZ
6import com.ctre.CANTalon;
7
bf921ece 8import edu.wpi.first.wpilibj.ADXRS450_Gyro;
4a75c629 9import edu.wpi.first.wpilibj.DoubleSolenoid;
73e8adbc 10import edu.wpi.first.wpilibj.DoubleSolenoid.Value;
fa4e4a97 11import edu.wpi.first.wpilibj.Encoder;
ccbc35ae 12import edu.wpi.first.wpilibj.RobotDrive;
38a404b3
KZ
13import edu.wpi.first.wpilibj.command.Subsystem;
14
15public class DriveTrain extends Subsystem {
571fb5c9
CZ
16 public static double driveP = 0.006, driveI = 0.001, driveD = -0.002;
17 public static double defaultGyroP = 0.004, defaultGyroI = 0.0013,
18 defaultGyroD = -0.005;
e12d6901
CZ
19 private double gyroZero = 0;
20
b634ebbc
CZ
21 public static final double WHEEL_DIAMETER = 6; // inches
22 public static final int ENCODER_PULSES_PER_REVOLUTION = 256;
23 public static final double INCHES_PER_PULSE = WHEEL_DIAMETER * Math.PI
24 / ENCODER_PULSES_PER_REVOLUTION;
b8791ca4 25 public static final int MAINTAIN_CLIMBED_POSITION = 1;
cc42bd52 26 private static DriveTrain driveTrain;
b8791ca4 27
cc42bd52
ME
28 private final CANTalon frontLeft, frontRight, rearLeft, rearRight;
29 private final RobotDrive robotDrive;
30 private final Encoder leftEncoder, rightEncoder;
73e8adbc 31 private final DoubleSolenoid leftGearPiston, rightGearPiston;
cc42bd52 32
bf921ece 33 private ADXRS450_Gyro imu;
e12d6901 34
cc42bd52
ME
35 private DriveTrain() {
36 // MOTOR CONTROLLERS
37 frontLeft = new CANTalon(Constants.DriveTrain.FRONT_LEFT);
38 frontRight = new CANTalon(Constants.DriveTrain.FRONT_RIGHT);
39 rearLeft = new CANTalon(Constants.DriveTrain.REAR_LEFT);
40 rearRight = new CANTalon(Constants.DriveTrain.REAR_RIGHT);
41
42 // ENCODERS
43 leftEncoder = new Encoder(Constants.DriveTrain.ENCODER_LEFT_A,
3e2738c4 44 Constants.DriveTrain.ENCODER_LEFT_B, false, Encoder.EncodingType.k4X);
cc42bd52 45 rightEncoder = new Encoder(Constants.DriveTrain.ENCODER_RIGHT_A,
3e2738c4 46 Constants.DriveTrain.ENCODER_RIGHT_B, false, Encoder.EncodingType.k4X);
cc42bd52 47
b634ebbc
CZ
48 leftEncoder.setDistancePerPulse(INCHES_PER_PULSE);
49 rightEncoder.setDistancePerPulse(INCHES_PER_PULSE);
cc42bd52
ME
50
51 // ROBOT DRIVE
52 robotDrive = new RobotDrive(frontLeft, rearLeft, frontRight, rearRight);
8e4c083c 53
bf921ece 54 this.imu = new ADXRS450_Gyro(Constants.DriveTrain.GYRO_PORT);
af4491f7 55
ca372ce8 56 // TODO: Not sure if MODULE_NUMBER should be the same for both
a4e99721 57 leftGearPiston = new DoubleSolenoid(Constants.DriveTrain.MODULE_NUMBER,
ca372ce8
AD
58 Constants.DriveTrain.LEFT_GEAR_PISTON_FORWARD,
59 Constants.DriveTrain.LEFT_GEAR_PISTON_REVERSE);
a4e99721 60 rightGearPiston = new DoubleSolenoid(Constants.DriveTrain.MODULE_NUMBER,
ca372ce8
AD
61 Constants.DriveTrain.RIGHT_GEAR_PISTON_FORWARD,
62 Constants.DriveTrain.RIGHT_GEAR_PISTON_REVERSE);
cc42bd52
ME
63 }
64
65 public static DriveTrain getDriveTrain() {
66 if (driveTrain == null) {
67 driveTrain = new DriveTrain();
68 }
69 return driveTrain;
70 }
71
72 // DRIVE METHODS
73 public void setMotorValues(final double left, final double right) {
74 frontLeft.set(left);
75 rearLeft.set(left);
76
b081e34b
ME
77 frontRight.set(-right);
78 rearRight.set(-right);
cc42bd52
ME
79 }
80
81 public void joystickDrive(final double thrust, final double twist) {
b081e34b 82 robotDrive.arcadeDrive(thrust, twist, true);
cc42bd52
ME
83 }
84
85 public void stop() {
86 setMotorValues(0, 0);
87 }
88
f0a71840
CZ
89 public double getLeftMotorVal() {
90 return (frontLeft.get() + rearLeft.get()) / 2;
cc42bd52
ME
91 }
92
f0a71840
CZ
93 public double getRightMotorVal() {
94 return (frontRight.get() + rearRight.get()) / 2;
cc42bd52
ME
95 }
96
cc42bd52
ME
97 // ENCODER METHODS
98
3a5d9ac7 99 public double getLeftEncoderDistance() {
cc42bd52
ME
100 return leftEncoder.getDistance();
101 }
102
3a5d9ac7 103 public double getRightEncoderDistance() {
cc42bd52
ME
104 return rightEncoder.getDistance();
105 }
106
8e4c083c 107 public void printEncoderOutput() {
f0a71840
CZ
108 // System.out.println("left: " + getLeftEncoderDistance());
109 // System.out.println("right: " + getRightEncoderDistance());
110 System.out.println(getAvgEncoderDistance());
174f415c
CZ
111 System.out.println("left: " + getLeftEncoderDistance());
112 System.out.println("right: " + getRightEncoderDistance());
8e4c083c
CZ
113 }
114
cc42bd52
ME
115 public double getAvgEncoderDistance() {
116 return (leftEncoder.getDistance() + rightEncoder.getDistance()) / 2;
117 }
118
119 public void resetEncoders() {
120 leftEncoder.reset();
121 rightEncoder.reset();
122 }
123
124 public double getLeftSpeed() {
125 return leftEncoder.getRate();
126 }
127
128 public double getRightSpeed() {
129 return rightEncoder.getRate();
130 }
131
132 public double getSpeed() {
133 return (getLeftSpeed() + getRightSpeed()) / 2.0;
134 }
135
e12d6901
CZ
136 // ------Gyro------//
137 public double getAngle() {
bf921ece 138 return this.imu.getAngle() - this.gyroZero;
e12d6901
CZ
139 }
140
141 public void resetGyro() {
571fb5c9 142 this.imu.reset();
e12d6901
CZ
143 }
144
145 public double getZeroAngle() {
146 return this.gyroZero;
af4491f7
AD
147 }
148
73e8adbc
AD
149 /*
150 * @return a value that is the current setpoint for the piston kReverse or
151 * KForward
152 */
06415bd8 153 public Value getLeftGearPistonValue() {
73e8adbc
AD
154 return leftGearPiston.get();
155 }
156
06415bd8
AD
157 /*
158 * @return a value that is the current setpoint for the piston kReverse or
159 * KForward
160 */
161 public Value getRightGearPistonValue() {
162 return rightGearPiston.get();
163 }
164
73e8adbc
AD
165 /*
166 * Changes the ball shift gear assembly to high
167 */
168 public void setHighGear() {
169 changeGear(Constants.DriveTrain.HIGH_GEAR);
170 }
171
172 /*
173 * Changes the ball shift gear assembly to low
174 */
175 public void setLowGear() {
176 changeGear(Constants.DriveTrain.LOW_GEAR);
177 }
178
179 /*
180 * Changes the gear to a DoubleSolenoid.Value
181 */
182 private void changeGear(DoubleSolenoid.Value gear) {
183 leftGearPiston.set(gear);
184 rightGearPiston.set(gear);
e12d6901
CZ
185 }
186
cc42bd52
ME
187 @Override
188 protected void initDefaultCommand() {
189 setDefaultCommand(new JoystickDrive());
190 }
38a404b3
KZ
191
192}