Skip to content

Commit 0cd6781

Browse files
committed
amp back up to 500
1 parent c57aa01 commit 0cd6781

3 files changed

Lines changed: 8 additions & 9 deletions

File tree

src/main/java/frc/robot/BuildConstants.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ public final class BuildConstants {
55
public static final String MAVEN_GROUP = "";
66
public static final String MAVEN_NAME = "2024RobotCode";
77
public static final String VERSION = "unspecified";
8-
public static final int GIT_REVISION = 306;
9-
public static final String GIT_SHA = "b02b6688c07f40ee3a6f56285b1df4f73fe24988";
10-
public static final String GIT_DATE = "2024-07-27 08:11:16 EDT";
8+
public static final int GIT_REVISION = 307;
9+
public static final String GIT_SHA = "c57aa011523ac25f85031d331b0481fe9783b437";
10+
public static final String GIT_DATE = "2024-07-27 09:10:29 EDT";
1111
public static final String GIT_BRANCH = "rainbow-rumble";
12-
public static final String BUILD_DATE = "2024-07-27 09:04:40 EDT";
13-
public static final long BUILD_UNIX_TIME = 1722085480261L;
12+
public static final String BUILD_DATE = "2024-07-27 10:49:11 EDT";
13+
public static final long BUILD_UNIX_TIME = 1722091751506L;
1414
public static final int DIRTY = 1;
1515

1616
private BuildConstants() {}

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@
4747
import frc.robot.commands.ScoreAmp;
4848
import frc.robot.commands.ScoreTrap;
4949
import frc.robot.commands.SetElevatorTarget;
50-
import frc.robot.commands.SetFeedersTargetRPM;
5150
import frc.robot.commands.SetPivotTarget;
5251
import frc.robot.commands.SetShooterTargetRPM;
5352
import frc.robot.commands.ShootNoteAmp;
@@ -913,9 +912,9 @@ private void manipControls() {
913912
// new SetShooterTargetRPM(0, 0, shooter))
914913
// .andThen(new InstantCommand(() -> pivot.setAimbot(true))));
915914

916-
manipRightTrigger.onTrue(new SetFeedersTargetRPM(1000, shooter));
915+
// manipRightTrigger.onTrue(new SetFeedersTargetRPM(1000, shooter));
917916

918-
manipRightTrigger.onFalse(new InstantCommand(() -> shooter.stopFeeders(), shooter));
917+
// manipRightTrigger.onFalse(new InstantCommand(() -> shooter.stopFeeders(), shooter));
919918

920919
// manipLeftTrigger.whileTrue(new TurnToAmp(drive, driveController));
921920

src/main/java/frc/robot/commands/ScoreAmp.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class ScoreAmp extends SequentialCommandGroup {
2020
public ScoreAmp(Elevator elevator, Pivot pivot, Shooter shooter, Drive drive) {
2121
addCommands(
2222
new InstantCommand(() -> elevator.setConstraints(100, 640)),
23-
new InstantCommand(() -> shooter.setFlywheelRPMs(400, 400), shooter),
23+
new InstantCommand(() -> shooter.setFlywheelRPMs(500, 500), shooter),
2424
new SetPivotTarget(Constants.PivotConstants.AMP_SETPOINT_DEG, pivot),
2525
new SetElevatorTarget(6, 1, elevator));
2626
// addCommands(

0 commit comments

Comments
 (0)