Skip to content

Commit c0e1373

Browse files
changed speeds
1 parent 2ba96a6 commit c0e1373

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

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

Lines changed: 6 additions & 6 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 = 314;
9-
public static final String GIT_SHA = "dbfb048d3f7aa479526221e9947ca94220ee5472";
10-
public static final String GIT_DATE = "2024-07-28 19:57:18 EDT";
11-
public static final String GIT_BRANCH = "main";
12-
public static final String BUILD_DATE = "2024-08-12 20:03:21 EDT";
13-
public static final long BUILD_UNIX_TIME = 1723507401200L;
8+
public static final int GIT_REVISION = 315;
9+
public static final String GIT_SHA = "2ba96a67996dd040d4122594e3dc264909194bf6";
10+
public static final String GIT_DATE = "2024-08-12 20:09:58 EDT";
11+
public static final String GIT_BRANCH = "pre-marc";
12+
public static final String BUILD_DATE = "2024-08-12 20:42:00 EDT";
13+
public static final long BUILD_UNIX_TIME = 1723509720423L;
1414
public static final int DIRTY = 1;
1515

1616
private BuildConstants() {}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public void angleShooter() {
115115
double shootingSpeed = calculateShooterSpeed(Units.metersToFeet(distanceToSpeakerMeter));
116116

117117
shooter.setFlywheelRPMs(shootingSpeed, shootingSpeed + 100);
118-
} else shooter.setFlywheelRPMs(5400 - 200, 5400 - 400);
118+
} else shooter.setFlywheelRPMs(5400 - 100, 5400 - 800);
119119
pivot.setPivotGoal(calculatePivotAngleDeg(distanceToSpeakerMeter));
120120
}
121121

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(500, 500), shooter),
23+
new InstantCommand(() -> shooter.setFlywheelRPMs(650, 650), shooter),
2424
new SetPivotTarget(Constants.PivotConstants.AMP_SETPOINT_DEG, pivot),
2525
new SetElevatorTarget(6, 1, elevator));
2626
// addCommands(

0 commit comments

Comments
 (0)