competition fixes
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / commands / driving / ToggleDriveGear.java
CommitLineData
f43a1c52
CZ
1package org.usfirst.frc.team3501.robot.commands.driving;
2
dfb792a1 3import org.usfirst.frc.team3501.robot.Constants;
f43a1c52 4import org.usfirst.frc.team3501.robot.Robot;
dfb792a1 5import org.usfirst.frc.team3501.robot.subsystems.DriveTrain;
f43a1c52 6
0704e870 7import edu.wpi.first.wpilibj.DoubleSolenoid.Value;
f43a1c52
CZ
8import edu.wpi.first.wpilibj.command.Command;
9
10/**
0704e870 11 * This command toggles the gear(low or high).
f43a1c52
CZ
12 *
13 * post-condition: if the drivetrain is running at high gear, it will be made to
14 * run at low gear, and vice versa
15 */
fc01fb0f 16public class ToggleDriveGear extends Command {
dfb792a1 17 DriveTrain driveTrain = Robot.getDriveTrain();
f43a1c52 18
fc01fb0f 19 public ToggleDriveGear() {
dfb792a1 20 requires(driveTrain);
f43a1c52
CZ
21 }
22
f43a1c52
CZ
23 @Override
24 protected void initialize() {
0704e870 25
f43a1c52
CZ
26 }
27
f43a1c52
CZ
28 @Override
29 protected void execute() {
fc01fb0f 30 Value rightPistonValue = driveTrain.getRightDriveTrainPiston();
9ca89e45 31 if (rightPistonValue == Constants.DriveTrain.REVERSE_PISTON_VALUE) {
dfb792a1 32 driveTrain.setHighGear();
0704e870 33 } else {
dfb792a1 34 driveTrain.setLowGear();
0704e870 35 }
f43a1c52
CZ
36 }
37
f43a1c52
CZ
38 @Override
39 protected boolean isFinished() {
dfb792a1 40 return true;
f43a1c52
CZ
41 }
42
f43a1c52
CZ
43 @Override
44 protected void end() {
45 }
46
f43a1c52
CZ
47 @Override
48 protected void interrupted() {
49 }
50}