change intake and output method names to intakeBall and outputBall
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / subsystems / IntakeArm.java
index bee2af1477027c3e6cd3555d2bd063ac4644d4f5..16517904d49b8108592aec97edf26dc17a1d1dad 100755 (executable)
@@ -35,15 +35,12 @@ public class IntakeArm extends Subsystem {
    *
    * Must be used in a command that has a timer variable to stop it.
    */
-  public void dropIntake() {
-    intakeRoller.set(0.3);
-  }
 
-  public void intake() {
+  public void intakeBall() {
     intakeRoller.set(Constants.IntakeArm.INTAKE_SPEED);
   }
 
-  public void output() {
+  public void outputBall() {
     intakeRoller.set(Constants.IntakeArm.OUTPUT_SPEED);
   }
 
@@ -102,7 +99,7 @@ public class IntakeArm extends Subsystem {
 
   /***
    * This method gets the angle of the potentiometer on the Intake Arm.
-   * 
+   *
    * @return angle of potentiometer
    */
   public double getIntakePot() {