Skip to content

Commit 6fda0f2

Browse files
committed
Speed Changes
1 parent 011d8da commit 6fda0f2

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

gradlew

100644100755
File mode changed.

src/main/java/frc/robot/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,6 @@ public static class IndexerConstants {
8484
public static final int SINGLE_MOTOR_ID = 25;
8585
public static final double SINGLE_MOTOR_VOLTAGE_COMP = 10.0;
8686
public static final int SINGLE_MOTOR_CURRENT_LIMIT = 60;
87-
public static final double SINGLE_MOTOR_SPEED = 0.3;
87+
public static final double SINGLE_MOTOR_SPEED = 0.5;
8888
}
8989
}

src/main/java/frc/robot/RobotContainer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,10 +271,10 @@ private void configureBindings()
271271
redbuttonbox.button(8).whileTrue(intakeSubsystem.RunIntake());
272272
// Why is this subsystem function not returning a runable? check the subsystem again.
273273
redbuttonbox.button(9).whileTrue(raiseIntakeCommand);
274-
redbuttonbox.button(10).whileTrue(shooterMotorSubsystem.ForwordSlowSpin(0.5));
274+
redbuttonbox.button(10).whileTrue(shooterMotorSubsystem.ForwordSlowSpin(0.75));
275275
otherbuttonbox.button(1).whileTrue(shooterMotorSubsystem.ForwordSlowSpin(-0.5));
276276
otherbuttonbox.button(2).whileTrue(shooterMotorSubsystem.SpinStop());
277-
otherbuttonbox.button(3).whileTrue(shooterMotorSubsystem.ForwordSlowSpin(.75));
277+
otherbuttonbox.button(3).whileTrue(shooterMotorSubsystem.ForwordSlowSpin(.9));
278278
otherbuttonbox.button(4).whileTrue(indexer.StopSpin());
279279

280280
driverXbox.b().whileTrue(indexer.StopSpin());

0 commit comments

Comments
 (0)