X-Git-Url: http://challenge-bot.com/repos/?p=3501%2F2017steamworks;a=blobdiff_plain;f=src%2Forg%2Fusfirst%2Ffrc%2Fteam3501%2Frobot%2FConstants.java;fp=src%2Forg%2Fusfirst%2Ffrc%2Fteam3501%2Frobot%2FConstants.java;h=48ec24277868d24a36b446c1d4b91f41a72d4bb0;hp=07b2028681b183e1b44bce9a80e5d9b4ccc7a5b5;hb=8275a069e1891bd27156dcd947a897519c42a3a3;hpb=ba9f0b126afd5973b11a22dd6640d8d6f0822f5a diff --git a/src/org/usfirst/frc/team3501/robot/Constants.java b/src/org/usfirst/frc/team3501/robot/Constants.java index 07b2028..48ec242 100644 --- a/src/org/usfirst/frc/team3501/robot/Constants.java +++ b/src/org/usfirst/frc/team3501/robot/Constants.java @@ -10,21 +10,28 @@ import edu.wpi.first.wpilibj.SPI; * constants for subsystems such as max and min values. */ +// have two buttons: one for shifting to high gear and the other for shifting to +// low gear + public class Constants { public static class OI { - public final static int LEFT_STICK_PORT = 0; - public final static int RIGHT_STICK_PORT = 1; + public final static int XBOX_CONTROLLER_PORT = 0; + // public final static int RIGHT_STICK_PORT = 1; public static final int GAME_PAD_PORT = 2; - public final static int TOGGLE_GEAR_PORT = 5; - public final static int RUN_INTAKE_PORT = 1; - public final static int REVERSE_INTAKE_PORT = 2; - - public final static int RUN_INDEXWHEEL_PORT = 1; - public final static int REVERSE_INDEXWHEEL_PORT = 2; - public static final int BRAKE_CANTALONS_PORT = 5; - public static final int COAST_CANTALONS_PORT = 6; - + // Xbox Controller Ports + // public final static int TOGGLE_GEAR_PORT = 5; + public final static int SHIFT_LOW_PORT = 9; + public final static int SHIFT_HIGH_PORT = 10; + public final static int RUN_INTAKE_PORT = 6; + public final static int REVERSE_INTAKE_PORT = 8; + public final static int RUN_INDEXWHEEL_PORT = 5; + public final static int REVERSE_INDEXWHEEL_PORT = 7; + public static final int BRAKE_CANTALONS_PORT = 1; + public static final int COAST_CANTALONS_PORT = 3; + public static final int CLIMB_PORT = 4; + + // Game Pad Ports public final static int TOGGLE_FLYWHEEL_PORT = 1; public static final int REVERSE_FLYWHEEL_PORT = 3; public static final int INCREASE_SHOOTER_SPEED_PORT = 8; @@ -32,7 +39,6 @@ public class Constants { public static final int RESET_SHOOTER_SPEED_PORT = 5; public static final int TOGGLE_GEAR_MANIPULATOR_PORT = 2; - public static final int CLIMB_PORT = 0; } public static class Shooter {