Skip to content

Commit

Permalink
changed motor voltages (#147)
Browse files Browse the repository at this point in the history
  • Loading branch information
txrnqt authored Jan 22, 2025
1 parent 4248f28 commit 4f399f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/subsystems/shooter/Shooter.java
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ public Command shootSpeaker() {
*/
public Command spit() {
return Commands.run(() -> {
setTopMotor(2.0);
setBottomMotor(2.0);
setTopMotor(4.0);
setBottomMotor(4.0);
}, this).finallyDo(() -> {
setTopMotor(0.0);
setBottomMotor(0.0);
Expand Down

0 comments on commit 4f399f2

Please sign in to comment.