From 074407dcf1adc08cc2899a51d153eba05946a2a2 Mon Sep 17 00:00:00 2001 From: Harel Dor Date: Sun, 21 Feb 2016 21:08:30 -0800 Subject: [PATCH] Fix joystick buttons --- 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 53def116..54ffd009 100644 --- a/src/org/usfirst/frc/team3501/robot/Constants.java +++ b/src/org/usfirst/frc/team3501/robot/Constants.java @@ -27,13 +27,13 @@ public class Constants { public final static int ARCADE_INTAKEARM_LEVEL_THREE_PORT = 0; public final static int ARCADE_INTAKEARM_LEVEL_FOUR_PORT = 0; - public final static int LEFT_JOYSTICK_TRIGGER_PORT = 0; + public final static int LEFT_JOYSTICK_TRIGGER_PORT = 1; public final static int SPIN1_PORT = 4; public final static int SPIN2_PORT = 5; public final static int LEFT_JOYSTICK_TOP_CENTER_PORT = 3; public final static int LEFT_JOYSTICK_TOP_LOW_PORT = 2; - public final static int RIGHT_JOYSTICK_TRIGGER_PORT = 0; + public final static int RIGHT_JOYSTICK_TRIGGER_PORT = 1; public final static int RIGHT_JOYSTICK_THUMB_PORT = 2; public final static int TOGGLE_SCALING_PORT = 0; -- 2.30.2