Skip to content

Commit

Permalink
lower shuttle shooter vel
Browse files Browse the repository at this point in the history
  • Loading branch information
JayK445 committed Mar 21, 2024
1 parent 4608d98 commit 28e76f5
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ public static final class Modes {
public static final ShooterSubsystem.ShooterPowers MAINTAIN_VELOCITY =
new ShooterSubsystem.ShooterPowers(40, 1, 0);
public static final ShooterSubsystem.ShooterPowers SHUTTLE =
new ShooterSubsystem.ShooterPowers(50, 1, 0);
new ShooterSubsystem.ShooterPowers(30, 1, 0);
public static final ShooterSubsystem.ShooterPowers ACCEL_SECURE =
new ShooterSubsystem.ShooterPowers(76, 1, 0.5);
}
Expand Down
1 change: 0 additions & 1 deletion src/main/java/frc/robot/commands/ShuttleLockCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
import edu.wpi.first.wpilibj2.command.Command;
import frc.robot.Constants.Pivot;
import frc.robot.subsystems.DrivebaseSubsystem;
import java.util.*;
import java.util.function.DoubleSupplier;

/**
Expand Down
1 change: 0 additions & 1 deletion src/main/java/frc/robot/commands/TargetLockCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
import edu.wpi.first.wpilibj2.command.Command;
import frc.robot.Constants.Pivot;
import frc.robot.subsystems.DrivebaseSubsystem;
import java.util.*;
import java.util.function.DoubleSupplier;

/**
Expand Down

0 comments on commit 28e76f5

Please sign in to comment.