shooter speedy

This commit is contained in:
Bradley Bickford 2024-03-30 13:10:12 -04:00
parent b22a3c2348
commit 076e8834b2

View File

@ -32,7 +32,9 @@ public class Shooter extends SubsystemBase{
public Shooter(BooleanSupplier indexerBeamBreak){
topShooter = new CANSparkMax(ShooterConstants.kTopShooterID, MotorType.kBrushless);
topShooter.setInverted(true);
bottomShooter = new CANSparkMax(ShooterConstants.kBottomShooterID, MotorType.kBrushless);
bottomShooter.setInverted(true);
shooterPivot = new CANSparkMax(ShooterConstants.kShooterPivotID, MotorType.kBrushless);
shooterPivot.setInverted(true);