Whoops, need to change the joystick port assignments to be zero based on the sample program.

Change-Id: I359e793ae13a1f3030a79f7cc19ffe10d93bbdfd
This commit is contained in:
Brad Miller
2014-10-01 19:23:22 -04:00
parent 3f38f3e84f
commit 0fcef94904

View File

@@ -27,8 +27,8 @@ public class Robot extends SampleRobot {
public Robot() {
myRobot = new RobotDrive(0, 1);
myRobot.setExpiration(0.1);
leftStick = new Joystick(1);
rightStick = new Joystick(2);
leftStick = new Joystick(0);
rightStick = new Joystick(1);
}