Change constants and variable names to be more descriptive
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / Constants.java
index 3d05b3f3638fc9c502da69b614273850f6d54c2e..966635f520f613ce520e0058fd3c204ebf44b374 100644 (file)
@@ -12,9 +12,10 @@ public class Constants {
     public final static int RIGHT_STICK_PORT = 0;
     public final static int TRIGGER_PORT = 0;
 
-    public final static int DECREMENT_SHOOTER_PORT = 0;
-    public final static int INCREMENT_SHOOTER_PORT = 0;
-    public final static int SHOOTER_PORT = 0;
+    public final static int DEC_SHOOTER_SPD_PORT = 0;
+    public final static int INC_SHOOTER_SPD_PORT = 0;
+    public final static int SHOOT_PORT = 0;
+    public final static int PRINT_PORT = 0;
   }
 
   public static class DriveTrain {
@@ -32,7 +33,11 @@ public class Constants {
   }
 
   public static class Shooter {
-    public static final int SHOOTER_WHEEL_PORT = 0;
+    public static final int PORT = 0;
+
+    public static enum State {
+      RUNNING, STOPPED;
+    }
   }
 
   public static enum Direction {