Removed trimming, started using keenans equation for angle

This commit is contained in:
ryan123rudder
2020-03-03 00:42:34 -07:00
parent ddf18c3a93
commit 694ab7482f
5 changed files with 10 additions and 17 deletions
@@ -164,11 +164,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
}