Skip to content

Commit

Permalink
speed up the trapper inside of intakeSlow
Browse files Browse the repository at this point in the history
  • Loading branch information
PatribotsProgramming committed Mar 10, 2024
1 parent 4ca35a4 commit 73c7eb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/subsystems/Trapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public Command outtakeSlow(double seconds) {
}

public Command intakeSlow() {
return runOnce(() -> setSpeed(0.1));
return runOnce(() -> setSpeed(0.2));
}

public Command stopCommand() {
Expand Down

0 comments on commit 73c7eb8

Please sign in to comment.