Skip to content

Commit b02faff

Browse files
committed
fix scoring setpoints
1 parent c129aa5 commit b02faff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/frc/robot/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ public static final class ElevatorConstants {
214214
public static final double kElevatorSensorMaxTrustDistance = 10;
215215

216216
public static final double kL1Height = 0.2;
217-
public static final double kL2Height = 3;
217+
public static final double kL2Height = 3.25;
218218
public static final double kL3Height = 10.5;
219219
public static final double kL4Height = 20;
220220

src/main/java/frc/robot/commands/scoring/coral/CoralL3Command.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public CoralL3Command(EndEffectorSubsystem endEffector, ElevatorSubsystem elevat
1515
new ParallelCommandGroup(
1616
new PivotCommand(endEffector, 0.36),
1717
new ElevatorNoPivotCommand(ElevatorConstants.kL3Height, elevator)),
18-
new PivotCommand(endEffector, 1.035)
18+
new PivotCommand(endEffector, 0.9)
1919
);
2020
}
2121

0 commit comments

Comments
 (0)