Skip to content

Commit e243535

Browse files
committed
epic speed increase
1 parent ea8da73 commit e243535

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

src/main/deploy/pathplanner/paths/$apb1c(12)!score b1 c1.path

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@
3333
"eventMarkers": [],
3434
"globalConstraints": {
3535
"maxVelocity": 4.0,
36-
"maxAcceleration": 3.5,
36+
"maxAcceleration": 3.75,
3737
"maxAngularVelocity": 540.0,
3838
"maxAngularAcceleration": 720.0
3939
},
4040
"goalEndState": {
41-
"velocity": 3.0,
41+
"velocity": 3.2,
4242
"rotation": 0,
4343
"rotateFast": false
4444
},

src/main/deploy/pathplanner/paths/get the note.path

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@
3838
"constraintZones": [],
3939
"eventMarkers": [],
4040
"globalConstraints": {
41-
"maxVelocity": 1.0,
42-
"maxAcceleration": 1.5,
41+
"maxVelocity": 1.5,
42+
"maxAcceleration": 2.1,
4343
"maxAngularVelocity": 540.0,
4444
"maxAngularAcceleration": 720.0
4545
},
4646
"goalEndState": {
47-
"velocity": 1.5,
47+
"velocity": 2.0,
4848
"rotation": 0,
4949
"rotateFast": true
5050
},

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 = 351;
9-
public static final String GIT_SHA = "7674857210fa4b588e1b24bd87aff4ff0b492160";
10-
public static final String GIT_DATE = "2024-09-08 09:58:56 EDT";
8+
public static final int GIT_REVISION = 352;
9+
public static final String GIT_SHA = "ea8da7366576569467cfc6aef5ac6051f7bc9530";
10+
public static final String GIT_DATE = "2024-09-08 16:03:17 EDT";
1111
public static final String GIT_BRANCH = "pre-goonettes";
12-
public static final String BUILD_DATE = "2024-09-08 14:15:58 EDT";
13-
public static final long BUILD_UNIX_TIME = 1725819358226L;
12+
public static final String BUILD_DATE = "2024-09-08 16:11:08 EDT";
13+
public static final long BUILD_UNIX_TIME = 1725826268973L;
1414
public static final int DIRTY = 1;
1515

1616
private BuildConstants() {}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public void initialize() {
5555

5656
generatedPathCommand =
5757
AutoBuilder.followPath(
58-
drive.generateTrajectoryToNote(targetNoteLocation, 3, 2.45, 100, 180, 0.5));
58+
drive.generateTrajectoryToNote(targetNoteLocation, 3.5, 2.7, 100, 180, 0.5));
5959

6060
generatedPathCommand.initialize();
6161
}

src/main/java/frc/robot/subsystems/drive/Drive.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -938,7 +938,7 @@ public Command alignToNote(LED led) {
938938
new PathPlannerPath(
939939
pointsToNote,
940940
new PathConstraints(
941-
2, 2.26, Units.degreesToRadians(100), Units.degreesToRadians(180)),
941+
3, 2.26, Units.degreesToRadians(100), Units.degreesToRadians(180)),
942942
new GoalEndState(0.5, targetRotation, true));
943943
Logger.recordOutput("source snap target", targetRotation.getDegrees());
944944
path.preventFlipping = true;

0 commit comments

Comments
 (0)