Change constants and variable names to be more descriptive
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / Constants.java
index 1cff6104ed66a5a154f7304699df1cb29407acf2..966635f520f613ce520e0058fd3c204ebf44b374 100644 (file)
@@ -10,12 +10,12 @@ public class Constants {
   public static class OI {
     public final static int LEFT_STICK_PORT = 0;
     public final static int RIGHT_STICK_PORT = 0;
-    public final static int RIGHT_STICK_TRIGGER = 0;
-
-    public final static int RIGHT_STICK_LEFT_SILVER_BUTTON = 0;
-    public final static int RIGHT_STICK_RIGHT_SILVER_BUTTON = 0;
-    public final static int RIGHT_STICK_THUMB_BUTTON = 0;
+    public final static int TRIGGER_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 {
@@ -33,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 {