Skip to content

Commit 071637f

Browse files
committed
dont remember
1 parent d78421f commit 071637f

3 files changed

Lines changed: 17 additions & 13 deletions

File tree

src/main/deploy/pathplanner/paths/$spc(43)!p-c4.path

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,20 @@
88
},
99
"prevControl": null,
1010
"nextControl": {
11-
"x": 6.052273987956048,
12-
"y": 0.5153818379385644
11+
"x": 4.956089798056913,
12+
"y": 1.3116136931275284
1313
},
1414
"isLocked": false,
1515
"linkedName": null
1616
},
1717
{
1818
"anchor": {
19-
"x": 7.027818181196901,
20-
"y": 2.411250741783995
19+
"x": 7.26312459757587,
20+
"y": 1.979131376237074
2121
},
2222
"prevControl": {
23-
"x": 6.027818181196901,
24-
"y": 2.411250741783995
23+
"x": 6.501920222100072,
24+
"y": 1.4989870778600318
2525
},
2626
"nextControl": null,
2727
"isLocked": false,
@@ -45,7 +45,7 @@
4545
},
4646
"goalEndState": {
4747
"velocity": 2.0,
48-
"rotation": 0.0,
48+
"rotation": 24.7751405688318,
4949
"rotateFast": false
5050
},
5151
"reversed": false,

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 = 309;
9-
public static final String GIT_SHA = "e232b1459ba26a93e0d264ec0ee1bec353156f03";
10-
public static final String GIT_DATE = "2024-07-27 13:55:30 EDT";
8+
public static final int GIT_REVISION = 311;
9+
public static final String GIT_SHA = "d78421f0f85c4912d80affa794c9e7b12db0027f";
10+
public static final String GIT_DATE = "2024-07-27 14:38:27 EDT";
1111
public static final String GIT_BRANCH = "rainbow-rumble";
12-
public static final String BUILD_DATE = "2024-07-27 14:03:00 EDT";
13-
public static final long BUILD_UNIX_TIME = 1722103380768L;
12+
public static final String BUILD_DATE = "2024-07-27 15:18:49 EDT";
13+
public static final long BUILD_UNIX_TIME = 1722107929009L;
1414
public static final int DIRTY = 1;
1515

1616
private BuildConstants() {}

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -803,7 +803,11 @@ private void driverControls() {
803803
new InstantCommand(() -> shooter.stopFeeders(), shooter)
804804
.andThen(new InstantCommand(() -> led.setState(LED_STATE.BLUE)))
805805
.andThen(new SetPivotTarget(Constants.PivotConstants.STOW_SETPOINT_DEG, pivot))
806-
.andThen(new SetElevatorTarget(Constants.ElevatorConstants.RETRACT_SETPOINT_INCH, Constants.ElevatorConstants.THRESHOLD, elevator))
806+
.andThen(
807+
new SetElevatorTarget(
808+
Constants.ElevatorConstants.RETRACT_SETPOINT_INCH,
809+
Constants.ElevatorConstants.THRESHOLD,
810+
elevator))
807811
.andThen(new WaitCommand(0.5))
808812
.andThen(new InstantCommand(shooter::stopFlywheels))
809813
.andThen(new InstantCommand(() -> shooter.turnOffFan(), shooter)));

0 commit comments

Comments
 (0)