X-Git-Url: http://challenge-bot.com/repos/?a=blobdiff_plain;f=src%2Forg%2Fusfirst%2Ffrc%2Fteam3501%2Frobot%2Fcommands%2Fshooter%2FRunIndexWheelContinuous.java;h=08ead3ac4bb6b52dfb8fd9cc974fd9d80d85724f;hb=7ba6bc91b8cf7205e05cdb974dc80fdd668ebe59;hp=377f4aadc16ab55897762f2f3a4f34ca3a96fb12;hpb=14ff5362e7fcd4a60940dfb07f688fbb5f9628ce;p=3501%2F2017steamworks diff --git a/src/org/usfirst/frc/team3501/robot/commands/shooter/RunIndexWheelContinuous.java b/src/org/usfirst/frc/team3501/robot/commands/shooter/RunIndexWheelContinuous.java index 377f4aa..08ead3a 100644 --- a/src/org/usfirst/frc/team3501/robot/commands/shooter/RunIndexWheelContinuous.java +++ b/src/org/usfirst/frc/team3501/robot/commands/shooter/RunIndexWheelContinuous.java @@ -1,6 +1,8 @@ package org.usfirst.frc.team3501.robot.commands.shooter; +import org.usfirst.frc.team3501.robot.Constants; import org.usfirst.frc.team3501.robot.Robot; +import org.usfirst.frc.team3501.robot.subsystems.Shooter; import edu.wpi.first.wpilibj.command.Command; @@ -17,36 +19,45 @@ import edu.wpi.first.wpilibj.command.Command; * @author Shaina */ public class RunIndexWheelContinuous extends Command { - private double motorVal; + private Shooter shooter = Robot.getShooter(); /** * See JavaDoc comment in class for details - * - * @param motorVal - * value range from -1 to 1 */ - public RunIndexWheelContinuous(double motorVal) { - this.motorVal = motorVal; + public RunIndexWheelContinuous() { + requires(shooter); } - // Called just before this Command runs the first time @Override protected void initialize() { - Robot.getShooter().setIndexWheelMotorVal(motorVal); } - // Called repeatedly when this Command is scheduled to run @Override protected void execute() { + double shooterSpeed = shooter.getShooterRPM(); + double targetShooterSpeed = shooter.getTargetShootingSpeed(); + double threshold = shooter.getRPMThreshold(); + // if (Math.abs(shooterSpeed - targetShooterSpeed) <= threshold) + + if (timeSinceInitialized() % 0.5 <= 0.02) { + + if (Robot.getDriveTrain() + .getLeftGearPistonValue() == Constants.DriveTrain.LOW_GEAR) { + System.out.println("shifting to low gear " + timeSinceInitialized()); + Robot.getDriveTrain().setHighGear(); + } else { + System.out.println("shifting to high gear " + timeSinceInitialized()); + Robot.getDriveTrain().setLowGear(); + } + } + shooter.runIndexWheel(); } - // Called once after isFinished returns true @Override protected void end() { + shooter.stopIndexWheel(); } - // Called when another command which requires one or more of the same - // subsystems is scheduled to run @Override protected void interrupted() { end(); @@ -54,12 +65,8 @@ public class RunIndexWheelContinuous extends Command { @Override protected boolean isFinished() { -<<<<<<< 7fe535d58b388a1d87b3728095d8a38786865468 return false; -======= - // TODO - return Robot.getOI().toggleIndexWheel.get(); ->>>>>>> Add buttons to OI class + } }