Skip to content

Commit 595783a

Browse files
increased amp flywheel speeds and amp bar angle
1 parent 2c89f93 commit 595783a

2 files changed

Lines changed: 7 additions & 7 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 = "2024 Robot Code";
77
public static final String VERSION = "unspecified";
8-
public static final int GIT_REVISION = 319;
9-
public static final String GIT_SHA = "3dcdfecb762813f82838b5f7190d2d615e22aa3d";
10-
public static final String GIT_DATE = "2024-08-10 16:48:53 EDT";
8+
public static final int GIT_REVISION = 320;
9+
public static final String GIT_SHA = "2c89f93b696e8f38145ff3ece9139d637201b983";
10+
public static final String GIT_DATE = "2024-08-10 19:14:18 EDT";
1111
public static final String GIT_BRANCH = "amp-bar";
12-
public static final String BUILD_DATE = "2024-08-10 18:59:31 EDT";
13-
public static final long BUILD_UNIX_TIME = 1723330771486L;
12+
public static final String BUILD_DATE = "2024-08-12 20:49:44 EDT";
13+
public static final long BUILD_UNIX_TIME = 1723510184499L;
1414
public static final int DIRTY = 1;
1515

1616
private BuildConstants() {}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ public ScoreAmp(Elevator elevator, Pivot pivot, Shooter shooter, Drive drive) {
2222
addCommands(
2323
new ParallelCommandGroup(
2424
new InstantCommand(() -> elevator.setConstraints(100, 640), elevator),
25-
new InstantCommand(() -> shooter.setFlywheelRPMs(1200, 1200), shooter),
25+
new InstantCommand(() -> shooter.setFlywheelRPMs(2400, 2400), shooter),
2626
new SetPivotTarget(Constants.PivotConstants.AMP_SETPOINT_DEG, pivot)),
27-
new SetAmpBarTarget(180, 0, elevator),
27+
new SetAmpBarTarget(195, 0, elevator),
2828
new SetElevatorTarget(6, 1, elevator));
2929

3030
// addCommands(

0 commit comments

Comments
 (0)