Skip to content
This repository has been archived by the owner on Dec 2, 2024. It is now read-only.

Commit

Permalink
changing shoot speed from 5500 rpm to 5000rpm
Browse files Browse the repository at this point in the history
  • Loading branch information
carokhan authored Oct 2, 2024
1 parent 096c0ce commit 234e8bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ private void configureButtonBindings() {
m_operator.b().whileTrue(
Commands.parallel(
m_pivot.setPivotTarget(() -> Units.degreesToRadians(20)),
m_shooter.setRPM(() -> 5500, 1)).until(() -> m_shooter.atSetpoint())); // DEMO: 2000, COMP: 5500
m_shooter.setRPM(() -> 5000, 1)).until(() -> m_shooter.atSetpoint())); // DEMO: 2000, COMP: 5500

// A for shooter at source
m_operator.a().whileTrue(
Expand Down

0 comments on commit 234e8bd

Please sign in to comment.