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