X-Git-Url: http://challenge-bot.com/repos/?p=3501%2F2017steamworks;a=blobdiff_plain;f=src%2Forg%2Fusfirst%2Ffrc%2Fteam3501%2Frobot%2Fcommands%2Fshooter%2FRunFlyWheelContinuous.java;h=2ae906c7be9753d2ba15de5b2994ccf765273a06;hp=6ac5d774bcf0f50893ef014e09c5a74f19bcdfee;hb=135022bce3be160d803dc6d297f5b9139a7afb31;hpb=5e93f30897a0c337c7c970d5829e00c4979dd32a diff --git a/src/org/usfirst/frc/team3501/robot/commands/shooter/RunFlyWheelContinuous.java b/src/org/usfirst/frc/team3501/robot/commands/shooter/RunFlyWheelContinuous.java index 6ac5d77..2ae906c 100644 --- a/src/org/usfirst/frc/team3501/robot/commands/shooter/RunFlyWheelContinuous.java +++ b/src/org/usfirst/frc/team3501/robot/commands/shooter/RunFlyWheelContinuous.java @@ -28,9 +28,6 @@ public class RunFlyWheelContinuous extends Command { private double target; public RunFlyWheelContinuous() { - // Use requires() here to declare subsystem dependencies - // eg. requires(chassis); - this.wheelP = this.shooter.wheelP; this.wheelI = this.shooter.wheelI; this.wheelD = this.shooter.wheelD; @@ -42,37 +39,33 @@ public class RunFlyWheelContinuous extends Command { this.target = this.shooter.CURRENT_SHOOTING_SPEED; } - // Called just before this Command runs the first time @Override protected void initialize() { this.wheelController.setSetPoint(this.target); } - // Called repeatedly when this Command is scheduled to run @Override protected void execute() { - double shooterSpeed = this.wheelController - .calcPID(this.shooter.getShooterRPM()); - - this.shooter.setFlyWheelMotorVal(shooterSpeed); + // double shooterSpeed = this.wheelController + // .calcPID(this.shooter.getShooterRPM()); + // + // this.shooter.setFlyWheelMotorVal(shooterSpeed); + System.out.println(shooter.getShooterRPM()); + this.shooter.setFlyWheelMotorVal(this.shooter.CURRENT_SHOOTING_SPEED); } - // Make this return true when this Command no longer needs to run execute() @Override protected boolean isFinished() { return false; } - // Called once after isFinished returns true @Override protected void end() { this.shooter.stopFlyWheel(); } - // Called when another command which requires one or more of the same - // subsystems is scheduled to run @Override protected void interrupted() { - + end(); } }