Fixed the problem with my git and re-added most of the buttons
authorTrevor <tr89on@gmail.com>
Fri, 27 Jan 2017 05:10:04 +0000 (21:10 -0800)
committerTrevor <tr89on@gmail.com>
Tue, 31 Jan 2017 03:13:50 +0000 (19:13 -0800)
src/org/usfirst/frc/team3501/robot/OI.java

index bf4c6dd3c55a6cd0df39240ac21ce9a8e1a716c4..2a67d9b4dc0d5700d09f50fbebe66f865303a23b 100644 (file)
@@ -42,7 +42,6 @@ public class OI {
         Constants.OI.TOGGLE_INDEXWHEEL_PORT);
     toggleFlyWheel = new JoystickButton(leftJoystick,
         Constants.OI.TOGGLE_FLYWHEEL_PORT);
-
     toggleIntake = new JoystickButton(leftJoystick,
         Constants.OI.TOGGLE_FLYWHEEL_PORT);
     toggleReverseIntake = new JoystickButton(leftJoystick,
@@ -73,7 +72,6 @@ public class OI {
     turn90Left.whenPressed(new Turn90Left());
     readyShooter.whenPressed(new PrepareToShoot());
     shootButton.whenPressed(new Shoot());
-
   }
 
   public static OI getOI() {