Change SetMotorValue
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / OI.java
index 211c3992323cac295dc95ad8f22faa573dc0e3f1..cf71c721b94429dfd41ea6148fb296d924b05541 100644 (file)
@@ -6,16 +6,17 @@ public class OI {
   private static OI oi;
   public static Joystick leftJoystick;
   public static Joystick rightJoystick;
+  public static ClimberButton climberButton;
 
   public OI() {
     leftJoystick = new Joystick(Constants.OI.LEFT_STICK_PORT);
     rightJoystick = new Joystick(Constants.OI.RIGHT_STICK_PORT);
 
   }
-  
-  public static OI getOI(){
-         if(oi == null)
-                 oi = new OI();
-         return oi;
+
+  public static OI getOI() {
+    if (oi == null)
+      oi = new OI();
+    return oi;
   }
 }