From: Cindy Zhang Date: Sun, 15 Jan 2017 02:27:49 +0000 (-0800) Subject: fix port constants X-Git-Url: http://challenge-bot.com/repos/?p=3501%2F2017steamworks;a=commitdiff_plain;h=6b4ab3d7f8fdfcbca54c706b296edc5dad3a637a fix port constants --- diff --git a/src/org/usfirst/frc/team3501/robot/Constants.java b/src/org/usfirst/frc/team3501/robot/Constants.java index 9147e11..b8016bd 100644 --- a/src/org/usfirst/frc/team3501/robot/Constants.java +++ b/src/org/usfirst/frc/team3501/robot/Constants.java @@ -8,8 +8,8 @@ package org.usfirst.frc.team3501.robot; public class Constants { public static class OI { - public final static int LEFT_STICK_PORT = 1; - public final static int RIGHT_STICK_PORT = 0; + public final static int LEFT_STICK_PORT = 0; + public final static int RIGHT_STICK_PORT = 1; } public static class DriveTrain {