Change SampleRobot template to use 0 based PWM

Change-Id: Ia299db32ba724e5a5ddc2e9a3c0dbb5d8acbb08f
This commit is contained in:
Joe Ross
2014-08-23 15:06:31 -07:00
parent 52e358c180
commit 023f955a56
2 changed files with 2 additions and 2 deletions

View File

@@ -28,7 +28,7 @@ public class Robot extends SampleRobot {
Joystick stick;
public Robot() {
myRobot = new RobotDrive(1, 2);
myRobot = new RobotDrive(0, 1);
myRobot.setExpiration(0.1);
stick = new Joystick(1);
}