From: EvanYap Date: Sat, 4 Feb 2017 21:48:40 +0000 (-0800) Subject: fix to I_Val constant X-Git-Url: http://challenge-bot.com/repos/?p=3501%2F2017steamworks;a=commitdiff_plain;h=360d51fe80e95577495e2533fe71eb0475750317 fix to I_Val constant --- diff --git a/src/org/usfirst/frc/team3501/robot/Robot.java b/src/org/usfirst/frc/team3501/robot/Robot.java index 0e007c1..b24596c 100644 --- a/src/org/usfirst/frc/team3501/robot/Robot.java +++ b/src/org/usfirst/frc/team3501/robot/Robot.java @@ -44,8 +44,9 @@ public class Robot extends IterativeRobot { public void autonomousInit() { driveTrain.setHighGear(); - SmartDashboard.putNumber("I", -1); + SmartDashboard.putNumber(Constants.DriveTrain.I_Val, -1); SmartDashboard.putNumber(Constants.DriveTrain.D_Val, -1); + } @Override