X-Git-Url: http://challenge-bot.com/repos/?p=3501%2F2017steamworks;a=blobdiff_plain;f=src%2Forg%2Fusfirst%2Ffrc%2Fteam3501%2Frobot%2Fsubsystems%2FShooter.java;h=b9ccb42dff3967cabcfd551a0d71bb7c1ca31ad9;hp=4869775e82dc88ccb8231063172da15e9839c03f;hb=09e509d3b1f6e73a06d62e41c5a959e6eed2e5c6;hpb=d7042bec1cddc809132fcc233ba3320b0b6681d9 diff --git a/src/org/usfirst/frc/team3501/robot/subsystems/Shooter.java b/src/org/usfirst/frc/team3501/robot/subsystems/Shooter.java index 4869775..b9ccb42 100644 --- a/src/org/usfirst/frc/team3501/robot/subsystems/Shooter.java +++ b/src/org/usfirst/frc/team3501/robot/subsystems/Shooter.java @@ -79,6 +79,14 @@ public class Shooter extends Subsystem { indexWheel.set(0); } + public double getCurrentShootingSpeed() { + return CURRENT_SHOOTING_SPEED; + } + + public void setCurrentShootingSpeed(double Value) { + CURRENT_SHOOTING_SPEED = Value; + } + @Override protected void initDefaultCommand() {