change intake and output method names to intakeBall and outputBall
authorShaina Chen <shaina.sierra@gmail.com>
Fri, 5 Feb 2016 03:56:40 +0000 (19:56 -0800)
committerShaina Chen <shaina.sierra@gmail.com>
Fri, 5 Feb 2016 04:21:46 +0000 (20:21 -0800)
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() {