Skip to content

Commit

Permalink
Decrease auto rollers voltage
Browse files Browse the repository at this point in the history
  • Loading branch information
superpenguin612 committed Mar 30, 2024
1 parent d608fd3 commit e71a33a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/subsystems/Intake.java
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ public Command runRollersCommand() {

public Command runRollersAutoCommand() {
return Commands.startEnd(
() -> setRollerVoltage(10),
() -> setRollerVoltage(8.5),
() -> setRollerVoltage(0))
.withName("intake.runRollers");
}
Expand Down Expand Up @@ -354,7 +354,7 @@ public Command intakeNoteAutoCommand() {
return Commands.parallel(
moveToPositionCommand(() -> IntakePosition.GROUND),
Commands.sequence(
runRollersCommand().until(
runRollersAutoCommand().until(
noteInIntakeFromOutsideTrigger.or(noteInShooterTrigger).or(noteFullyInShooterTrigger)),
runRollersHalfCommand().until(noteInShooterTrigger.or(noteFullyInShooterTrigger)),
runRollersSlowCommand().until(noteFullyInShooterTrigger)))
Expand Down

0 comments on commit e71a33a

Please sign in to comment.