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=150ce5091a27713f73a63b970f06ee1274daa138;hp=f39f1ff2754e284dcc4f38124e7465131a913b13;hb=cf77d84e212b20171a5a3397b26fe7f98f4ba460;hpb=381dad77be9ae65d463812e2c2ad852363084219 diff --git a/src/org/usfirst/frc/team3501/robot/subsystems/Shooter.java b/src/org/usfirst/frc/team3501/robot/subsystems/Shooter.java index f39f1ff..150ce50 100644 --- a/src/org/usfirst/frc/team3501/robot/subsystems/Shooter.java +++ b/src/org/usfirst/frc/team3501/robot/subsystems/Shooter.java @@ -7,13 +7,13 @@ import com.ctre.CANTalon; import edu.wpi.first.wpilibj.command.Subsystem; public class Shooter extends Subsystem { - public double wheelP = 0.005, wheelI = 0.001, wheelD = -0.003; + public double wheelP = 0, wheelI = 0, wheelD = -0; private static Shooter shooter; private final CANTalon flyWheel, indexWheel; public static final double DEFAULT_INDEXING_SPEED = 0; public static final double DEFAULT_SHOOTING_SPEED = 0; - public static double CURRENT_SHOOTING_SPEED; + public static double CURRENT_SHOOTING_SPEED = DEFAULT_SHOOTING_SPEED; public static final double SHOOTING_SPEED_INCREMENT = 0; @@ -75,6 +75,6 @@ public class Shooter extends Subsystem { } public double getShooterSpeed() { - return 1.0; + return 0.0; } }