X-Git-Url: http://challenge-bot.com/repos/?a=blobdiff_plain;f=src%2Forg%2Fusfirst%2Ffrc%2Fteam3501%2Frobot%2FConstants.java;h=eaf8bc6293711cb715e551c66a902fca6d20c694;hb=40348cabbc95d9cb1253b78e61783933e6a33af6;hp=4878ffa72a905acdfe9212fa0afddfb0860f797c;hpb=38b0db5275bedd28649f0443ee57033f0a38752c;p=3501%2Fstronghold-2016 diff --git a/src/org/usfirst/frc/team3501/robot/Constants.java b/src/org/usfirst/frc/team3501/robot/Constants.java index 4878ffa7..eaf8bc62 100644 --- a/src/org/usfirst/frc/team3501/robot/Constants.java +++ b/src/org/usfirst/frc/team3501/robot/Constants.java @@ -10,6 +10,7 @@ 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 static class DriveTrain { @@ -26,6 +27,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; }