From: Kevin Zhang Date: Sat, 23 Jan 2016 03:22:46 +0000 (-0800) Subject: Add in numbers corresponding to shooter X-Git-Url: http://challenge-bot.com/repos/?p=3501%2Fstronghold-2016;a=commitdiff_plain;h=9fb915daafe02e95c7e07c3d2112e7f0163d728a Add in numbers corresponding to shooter --- diff --git a/src/org/usfirst/frc/team3501/robot/Constants.java b/src/org/usfirst/frc/team3501/robot/Constants.java index 966635f5..765851a3 100644 --- a/src/org/usfirst/frc/team3501/robot/Constants.java +++ b/src/org/usfirst/frc/team3501/robot/Constants.java @@ -9,13 +9,13 @@ package org.usfirst.frc.team3501.robot; 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 TRIGGER_PORT = 0; + public final static int RIGHT_STICK_PORT = 1; + public final static int TRIGGER_PORT = 1; - public final static int DEC_SHOOTER_SPD_PORT = 0; - public final static int INC_SHOOTER_SPD_PORT = 0; - public final static int SHOOT_PORT = 0; - public final static int PRINT_PORT = 0; + public final static int DEC_SHOOTER_SPD_PORT = 2; + public final static int INC_SHOOTER_SPD_PORT = 3; + public final static int SHOOT_PORT = 4; + public final static int PRINT_PORT = 5; } public static class DriveTrain {