Skip to content

Commit

Permalink
increase vibration duration in controller
Browse files Browse the repository at this point in the history
  • Loading branch information
kytpbs committed Apr 2, 2024
1 parent a2cb95a commit bc4f59f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/subsystems/IntakeSubsystem.java
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public Command loadToShooterCommand() {
}

public Command vibrateControllerOnNoteCommand(XboxController controller) {
return new VibrateControllerCommand(controller, 2, 1, 0.1)
return new VibrateControllerCommand(controller, 2, 1, 0.2)
.alongWith(new PrintCommand("Note!"))
.beforeStarting(new WaitUntilCommand(this::hasNote));
}
Expand Down

0 comments on commit bc4f59f

Please sign in to comment.