Remove random files.
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / Constants.java
index d34f79a5ce64caa239e25929ddf57744e1ebfd9e..a40334d01c5bdfc3cbd6eda96790d9e001ab6cce 100644 (file)
@@ -17,7 +17,11 @@ public class Constants {
     public final static int TOGGLE_WINCH_PORT = 0;
     public final static int TOGGLE_FLYWHEEL_PORT = 0;
     public final static int TOGGLE_INDEXWHEEL_PORT = 0;
+
     public final static int TOGGLE_GEAR_PORT = 0;
+
+    public static final int TOGGLE_CAMERA_FEEDS = 4;
+
   }
 
   public static class Shooter {
@@ -61,4 +65,13 @@ public class Constants {
   public static enum Direction {
     LEFT, RIGHT, DOWN, UP, FORWARD, BACKWARD;
   }
+
+  public class CameraFeeds {
+    public static final int btCamCenter = 1;
+    public static final int btCamRight = 2;
+
+    public static final String camNameCenter = "cam0";
+    public static final String camNameRight = "cam1";
+    public static final int imgQuality = 60;
+  }
 }