Merge branch 'master-updates' into buckmeister's-wacky-code-changes

This commit is contained in:
Keenan D. Buckley
2020-03-03 01:25:22 -07:00
4 changed files with 19 additions and 22 deletions
@@ -126,11 +126,10 @@ public class Shooter extends SubsystemBase {
/**
* Runs drum shooter velocity PID.
* @param falcon Motor to use
* @param targetVel Target velocity to run motor at
*/
public void runDrumShooterVelocityPID(double targetVel) {
System.out.println("dddddddddddddddddddddddd" + targetVel);
System.out.println("Target Velocity" + targetVel);
m_shooterFalcon.set(TalonFXControlMode.Velocity, targetVel); //Init PID
}
}