From 6b4ab3d7f8fdfcbca54c706b296edc5dad3a637a Mon Sep 17 00:00:00 2001 From: Cindy Zhang Date: Sat, 14 Jan 2017 18:27:49 -0800 Subject: [PATCH] fix port constants --- src/org/usfirst/frc/team3501/robot/Constants.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 { -- 2.30.2