Add everything all commands to specific packages
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / OI.java
index 17889c7073c21796465fa0294b3c3f057a7ec139..1c891af08f5e26dcf2b9e9bb7a3baae61b3ec938 100644 (file)
@@ -1,7 +1,7 @@
 package org.usfirst.frc.team3501.robot;
 
-import org.usfirst.frc.team3501.robot.commands.ChangeShooterSpeed;
-import org.usfirst.frc.team3501.robot.commands.SetShooterSpeed;
+import org.usfirst.frc.team3501.robot.commands.shooter.ChangeShooterSpeed;
+import org.usfirst.frc.team3501.robot.commands.shooter.SetShooterSpeed;
 
 import edu.wpi.first.wpilibj.Joystick;
 import edu.wpi.first.wpilibj.buttons.Button;
@@ -20,11 +20,11 @@ public class OI {
     rightJoystick = new Joystick(Constants.OI.RIGHT_STICK_PORT);
 
     decrementShooterSpeed = new JoystickButton(rightJoystick,
-        Constants.OI.DEC_SHOOTER_SPD_PORT);
+        Constants.OI.DECREMENT_SHOOTER_SPEED_PORT);
     decrementShooterSpeed.whenPressed(new ChangeShooterSpeed(-0.1));
 
     incrementShooterSpeed = new JoystickButton(rightJoystick,
-        Constants.OI.INC_SHOOTER_SPD_PORT);
+        Constants.OI.INCREMENT_SHOOTER_SPEED_PORT);
     incrementShooterSpeed.whenPressed(new ChangeShooterSpeed(0.1));
 
     outputCurrentShooterSpeed = new JoystickButton(rightJoystick,