We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2f0524 commit ec7a29cCopy full SHA for ec7a29c
src/main/java/frc/robot/subsystems/algae/Algae.java
@@ -41,7 +41,7 @@ public Algae(AlgaeIO io) {
41
}
42
43
public Command intake() {
44
- return this.runOnce(() -> m_io.setShootVoltage(-10)).withName("Intake");
+ return this.runOnce(() -> m_io.setShootVoltage(-5)).withName("Intake");
45
46
47
public Command slowShoot() {
src/main/java/frc/robot/subsystems/shooter/Shooter.java
@@ -33,7 +33,7 @@ public Command stopInstant() {
33
34
35
36
- return this.run(() -> m_io.setSpeed(0.1)).withName("Intake");
+ return this.run(() -> m_io.setSpeed(0.05)).withName("Intake");
37
38
39
@Override
0 commit comments