Skip to content

Commit a6974ba

Browse files
committed
Update at 'Wed May 21 20:35:20 EDT 2025'
1 parent f3d6cae commit a6974ba

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/frc/robot/subsystems/algae/Algae.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public Algae(AlgaeIO io) {
4141
}
4242

4343
public Command intake() {
44-
return this.runOnce(() -> m_io.setShootVoltage(-3)).withName("Intake");
44+
return this.runOnce(() -> m_io.setShootVoltage(-5)).withName("Intake");
4545
}
4646

4747
public Command slowShoot() {

src/main/java/frc/robot/subsystems/shooter/Shooter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public Command stopInstant() {
3333
}
3434

3535
public Command intake() {
36-
return this.run(() -> m_io.setSpeed(0.1)).withName("Intake");
36+
return this.run(() -> m_io.setSpeed(0.05)).withName("Intake");
3737
}
3838

3939
@Override

0 commit comments

Comments
 (0)