X-Git-Url: http://challenge-bot.com/repos/?p=3501%2F2017steamworks;a=blobdiff_plain;f=src%2Forg%2Fusfirst%2Ffrc%2Fteam3501%2Frobot%2FConstants.java;h=2064424c830ba0c17921b4edcafbff545d0cdc2e;hp=48ec24277868d24a36b446c1d4b91f41a72d4bb0;hb=f74d236db406193b851bff99e4daec7b7abf35e7;hpb=8275a069e1891bd27156dcd947a897519c42a3a3 diff --git a/src/org/usfirst/frc/team3501/robot/Constants.java b/src/org/usfirst/frc/team3501/robot/Constants.java index 48ec242..2064424 100644 --- a/src/org/usfirst/frc/team3501/robot/Constants.java +++ b/src/org/usfirst/frc/team3501/robot/Constants.java @@ -16,11 +16,9 @@ import edu.wpi.first.wpilibj.SPI; public class Constants { public static class OI { public final static int XBOX_CONTROLLER_PORT = 0; - // public final static int RIGHT_STICK_PORT = 1; public static final int GAME_PAD_PORT = 2; // 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; @@ -30,14 +28,21 @@ public class Constants { public static final int BRAKE_CANTALONS_PORT = 1; public static final int COAST_CANTALONS_PORT = 3; public static final int CLIMB_PORT = 4; + public static final int STOP_CLIMB_PORT = 2; // Game Pad Ports - public final static int TOGGLE_FLYWHEEL_PORT = 1; - public static final int REVERSE_FLYWHEEL_PORT = 3; + public final static int RUN_FLYWHEEL_PORT = 1; + public static final int STOP_FLYWHEEL_PORT = 3; + public static final int REVERSE_FLYWHEEL_PORT = 4; public static final int INCREASE_SHOOTER_SPEED_PORT = 8; public static final int DECREASE_SHOOTER_SPEED_PORT = 7; - public static final int RESET_SHOOTER_SPEED_PORT = 5; - public static final int TOGGLE_GEAR_MANIPULATOR_PORT = 2; + + public static final int RESET_SHOOTER_SPEED_PORT = 2; + public static final int SHIFT_GEAR_MANIPULATOR_HIGH_PORT = 6; + public static final int SHIFT_GEAR_MANIPULATOR_LOW_PORT = 5; + + // 5 is piston out (gear manipulator) + // 6 is piston in (gear manipulator) }