Setup port and initialize wheel object for ShooterTest to use
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / Constants.java
index 4878ffa72a905acdfe9212fa0afddfb0860f797c..1cff6104ed66a5a154f7304699df1cb29407acf2 100644 (file)
@@ -10,6 +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 static class DriveTrain {
@@ -26,6 +32,10 @@ public class Constants {
     public final static int ENCODER_RIGHT_B = 1;
   }
 
+  public static class Shooter {
+    public static final int SHOOTER_WHEEL_PORT = 0;
+  }
+
   public static enum Direction {
     LEFT, RIGHT, DOWN, UP, FORWARD, BACKWARD;
   }