Skip to content

Commit 9f7a9c9

Browse files
authored
elevator constants tuning (#97)
1 parent 4001cdc commit 9f7a9c9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/main/java/frc/robot/elevator/ElevatorConstants.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public static final class LifterConstants {
3131
public static final double kVelocityConversionFactor = kPositionConversionFactor / 60.0;
3232

3333
public static final LinearVelocity kFineVelocity = InchesPerSecond.of(15.0);
34-
public static final LinearVelocity kRapidVelocity = InchesPerSecond.of(15.0);
34+
public static final LinearVelocity kRapidVelocity = InchesPerSecond.of(30.0);
3535
public static final LinearAccelerationUnit inchesPerSecondPerSecond =
3636
InchesPerSecond.per(Second);
3737
public static final LinearAcceleration kRapidAcceleration = inchesPerSecondPerSecond.of(1000);
@@ -212,13 +212,13 @@ public static final class AlgaeWristConstants {
212212

213213
public static enum AlgaeWristState {
214214
Unknown(90),
215-
Floor(-10),
216-
Min(-20),
215+
Floor(0),
216+
Min(-10),
217217
Max(95),
218218
Processor(0),
219-
L2(-10),
220-
L3(-10),
221-
Barge(80),
219+
L2(-0),
220+
L3(-0),
221+
Barge(60),
222222
CoralMode(90);
223223

224224
public Angle angle;

0 commit comments

Comments
 (0)