Skip to content

Commit

Permalink
fix: chassis matter
Browse files Browse the repository at this point in the history
  • Loading branch information
minhd-vu committed Nov 18, 2024
1 parent 7f150da commit 6f3d449
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
public final class Constants {
public static final Measure<Mass> ROBOT_MASS = Pounds.of(125);
public static final Matter CHASSIS =
new Matter(new Translation3d(0, 0, Units.inchesToMeters(8)), ROBOT_MASS.in(Pounds));
new Matter(new Translation3d(0, 0, Units.inchesToMeters(8)), ROBOT_MASS.in(Kilogram));
public static final Measure<Time> LOOP_TIME =
Seconds.of(0.13); // s, 20ms + 110ms sprk max velocity lag
public static final Measure<Velocity<Distance>> MAX_SPEED = FeetPerSecond.of(14.5);
Expand Down

0 comments on commit 6f3d449

Please sign in to comment.