Fix conflicts in ToggleGear
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / commands / driving / ToggleGear.java
1 package org.usfirst.frc.team3501.robot.commands.driving;
2
3 import org.usfirst.frc.team3501.robot.Constants;
4 import org.usfirst.frc.team3501.robot.Robot;
5 import org.usfirst.frc.team3501.robot.subsystems.DriveTrain;
6
7 import edu.wpi.first.wpilibj.DoubleSolenoid.Value;
8 import edu.wpi.first.wpilibj.command.Command;
9
10 /**
11 * This command toggles the gear(low or high).
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 */
16 public class ToggleGear extends Command {
17 DriveTrain driveTrain = Robot.getDriveTrain();
18
19 public ToggleGear() {
20 requires(driveTrain);
21 }
22
23 @Override
24 protected void initialize() {
25
26 }
27
28 @Override
29 protected void execute() {
30 Value leftGearPistonValue = driveTrain.getLeftGearPistonValue();
31 Value rightGearPistonValue = driveTrain.getRightGearPistonValue();
32
33 if (leftGearPistonValue == Constants.DriveTrain.LOW_GEAR) {
34 driveTrain.setHighGear();
35 } else {
36 driveTrain.setLowGear();
37 }
38
39 }
40
41 @Override
42 protected boolean isFinished() {
43 return true;
44 }
45
46 @Override
47 protected void end() {
48 }
49
50 @Override
51 protected void interrupted() {
52 }
53 }