Add code for toggleDrivePiston
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / Constants.java
index c2fbf7b121dc7e831d783cf066980d32eb0d4f05..91a5cc7f2a664980af0a0a51f5bb4aa1aac627e8 100644 (file)
@@ -25,6 +25,7 @@ public class Constants {
     public final static int REVERSE_INTAKE_PORT = 4;
     public static final int INCREASE_SHOOTER_SPEED_PORT = 6;
     public static final int DECREASE_SHOOTER_SPEED_PORT = 2;
+    public static final int CHANGE_CAMERA_VIEW = 6;
   }
 
   public static class Shooter {
@@ -34,6 +35,13 @@ public class Constants {
     public static final int INDEX_WHEEL = 7;
 
     public final static int HALL_EFFECT_PORT = 9;
+
+    public final static int TOGGLE_INDEXER = 8;
+
+    public static final int PISTON_MODULE = 10, PISTON_FORWARD = 4,
+        PISTON_REVERSE = 5;
+    public static final Value HIGH_GEAR = DoubleSolenoid.Value.kForward;
+    public static final Value LOW_GEAR = DoubleSolenoid.Value.kReverse;
   }
 
   public static class DriveTrain {
@@ -44,6 +52,8 @@ public class Constants {
     public static final Value HIGH_GEAR = DoubleSolenoid.Value.kForward;
     public static final Value LOW_GEAR = DoubleSolenoid.Value.kReverse;
 
+    public final static int TOGGLE_DRIVE_PISTON = 7;
+
     // MOTOR CONTROLLERS
     public static final int FRONT_LEFT = 1;
     public static final int FRONT_RIGHT = 3;