fix port constants
authorCindy Zhang <cindyzyx9@gmail.com>
Sun, 15 Jan 2017 02:27:49 +0000 (18:27 -0800)
committerCindy Zhang <cindyzyx9@gmail.com>
Sun, 15 Jan 2017 02:27:49 +0000 (18:27 -0800)
src/org/usfirst/frc/team3501/robot/Constants.java

index 9147e11c4618504f08f4dfd50d23e95deff83e76..b8016bd62da35c46a902e738404cb70da0231c2f 100644 (file)
@@ -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 {