X-Git-Url: http://challenge-bot.com/repos/?a=blobdiff_plain;f=src%2Forg%2Fusfirst%2Ffrc%2Fteam3501%2Frobot%2Fsubsystems%2FIntakeArm.java;h=1870799debfc45f510217aded8ae180c73417dba;hb=5cff891038f613483040c7f1a2b5b554adcd3313;hp=2b4821460b49f2b795e214fab256ebdbde01b5e7;hpb=ac8bb84bcdaaa398b541e7b5971299e61b09fc35;p=3501%2Fstronghold-2016 diff --git a/src/org/usfirst/frc/team3501/robot/subsystems/IntakeArm.java b/src/org/usfirst/frc/team3501/robot/subsystems/IntakeArm.java index 2b482146..1870799d 100755 --- a/src/org/usfirst/frc/team3501/robot/subsystems/IntakeArm.java +++ b/src/org/usfirst/frc/team3501/robot/subsystems/IntakeArm.java @@ -2,99 +2,72 @@ package org.usfirst.frc.team3501.robot.subsystems; import org.usfirst.frc.team3501.robot.Constants; -import edu.wpi.first.wpilibj.AnalogPotentiometer; import edu.wpi.first.wpilibj.CANTalon; +import edu.wpi.first.wpilibj.DoubleSolenoid; import edu.wpi.first.wpilibj.command.Subsystem; /*** * The IntakeArm consists of two rollers that are controlled by one motor, with * a potentiometer on it. * - * The motor controls the rollers, making them roll forwards and backwards. - * The Intake rollers are on the back of the robot. As the rollers run, they - * intake the ball. + * The motor controls the rollers, making them roll forwards and backwards. The + * Intake rollers are on the back of the robot. As the rollers run, they intake + * the ball. * * @author superuser * */ public class IntakeArm extends Subsystem { + private CANTalon intakeRoller; - private CANTalon intakeArm; - private AnalogPotentiometer intakePot; + private DoubleSolenoid leftIntake, rightIntake; + public static double moveIntakeArmSpeed = 0; public IntakeArm() { intakeRoller = new CANTalon(Constants.IntakeArm.ROLLER_PORT); - intakeArm = new CANTalon(Constants.IntakeArm.INTAKE_PORT); - intakePot = new AnalogPotentiometer( - Constants.IntakeArm.INTAKE_CHANNEL, - Constants.IntakeArm.FULL_RANGE, - Constants.IntakeArm.OFFSET); + + leftIntake = new DoubleSolenoid(Constants.IntakeArm.LEFT_FORWARD, + Constants.IntakeArm.LEFT_REVERSE); + + rightIntake = new DoubleSolenoid(Constants.IntakeArm.RIGHT_FORWARD, + Constants.IntakeArm.RIGHT_REVERSE); } /*** - * This method sets the voltage of the motor to intake the ball. - * The voltage values are constants in Constants class + * This method sets the voltage of the motor to intake the ball. The voltage + * values are constants in Constants class */ public void intakeBall() { intakeRoller.set(Constants.IntakeArm.INTAKE_SPEED); } /*** - * This method sets the voltage of the motor to output the ball. - * The voltage values are constants in Constants class + * This method sets the voltage of the motor to output the ball. The voltage + * values are constants in Constants class */ public void outputBall() { intakeRoller.set(Constants.IntakeArm.OUTPUT_SPEED); } + public void stopRollers() { + intakeRoller.set(0); + } + /*** * This method gets you the current voltage of the motor that controls the - * intake arm roller. The range of voltage is from [-1,1]. - * A negative voltage makes the motor run backwards. + * intake arm roller. The range of voltage is from [-1,1]. A negative voltage + * makes the motor run backwards. * * @return Returns the voltage of the motor that controls the roller. The - * range of the voltage goes from [-1,1]. - * A negative voltage indicates that the motor is running backwards. + * range of the voltage goes from [-1,1]. A negative voltage indicates + * that the motor is running backwards. */ public double getRollerVoltage() { return intakeRoller.get(); } - /*** - * This method sets the voltage of the arm motor. The range is from [-1,1]. A - * negative voltage makes the direction of the motor go backwards. - * - * @param voltage - * The voltage that you set the motor at. The range of the voltage of - * the arm motor is from [-1,1]. A - * negative voltage makes the direction of the motor go backwards. - */ - - public void setArmVoltage(double voltage) { - if (voltage > 1) - voltage = 1; - else if (voltage < -1) - voltage = -1; - - intakeArm.set(voltage); - } - - /*** - * This method gets you the current voltage of the motor that controls the - * intake arm. The range of voltage is from [-1,1]. - * A negative voltage makes the motor run backwards. - * - * @return Returns the voltage of the motor that controls the arm. The - * range of the voltage goes from [-1,1]. - * A negative voltage indicates that the motor is running backwards. - */ - - public double getArmVoltage() { - return intakeArm.get(); - } - /*** * This method checks to see if the presence of the ball inside is true or * false. @@ -116,18 +89,11 @@ public class IntakeArm extends Subsystem { */ public boolean areRollersRolling() { + if (Math.abs(getRollerVoltage()) < 0.02) + return false; return true; } - /*** - * This method gets the angle of the potentiometer on the Intake Arm. - * - * @return angle of potentiometer - */ - public double getArmAngle() { - return intakePot.get(); - } - @Override protected void initDefaultCommand() {