Skip to content

Commit

Permalink
reduce shooter speed for outreach
Browse files Browse the repository at this point in the history
  • Loading branch information
GearBoxFox committed May 9, 2024
1 parent cea5eb7 commit b7e5133
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -208,11 +208,11 @@ private void configureButtonBindings() {

passSpinUpTrigger.whileTrue(
m_armSubsystem.setDesiredStateFactory(ArmSubsystem.ArmState.PASS)
.alongWith(m_shooter.runShooterVelocity(false, () -> 3250, () -> 3250)));
.alongWith(m_shooter.runShooterVelocity(false, () -> 1500, () -> 1500)));

passTrigger.whileTrue(
m_armSubsystem.setDesiredStateFactory(ArmSubsystem.ArmState.PASS)
.alongWith(m_shooter.runShooterVelocity(true, () -> 3250, () -> 3250)));
.alongWith(m_shooter.runShooterVelocity(true, () -> 1500, () -> 1500)));

m_driverController.pov(180).whileTrue(m_armSubsystem.setDesiredStateFactory(ArmSubsystem.ArmState.AMP));
m_driverController.pov(0).whileTrue(m_armSubsystem.setDesiredStateFactory(ArmSubsystem.ArmState.ANTI_DEFENSE));
Expand Down

0 comments on commit b7e5133

Please sign in to comment.