Add code to alternate pistons in runIndexWheelContinuous
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / Constants.java
index c2fbf7b121dc7e831d783cf066980d32eb0d4f05..9a80556574c8125f0f88d0e331afacda0a2e2b2c 100644 (file)
@@ -34,6 +34,11 @@ public class Constants {
     public static final int INDEX_WHEEL = 7;
 
     public final static int HALL_EFFECT_PORT = 9;
+
+    public static final int PISTON_MODULE = 10, PISTON_FORWARD = 0,
+        PISTON_REVERSE = 1;
+    public static final Value HIGH_GEAR = DoubleSolenoid.Value.kForward;
+    public static final Value LOW_GEAR = DoubleSolenoid.Value.kReverse;
   }
 
   public static class DriveTrain {