Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -25,7 +25,7 @@
* (log replay from a file).
*/
public final class Constants {
public static final Mode simMode = Mode.REPLAY;
public static final Mode simMode = Mode.SIM;
public static final Mode currentMode = RobotBase.isReal() ? Mode.REAL : simMode;

public static enum Mode {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public final class LauncherConstants {
public static final class TurretConstants {
// Geometry
public static final Transform3d chassisToTurretBase =
new Transform3d(Inches.of(-2.271), Inches.of(-4.959), Inches.of(16.331), Rotation3d.kZero);
new Transform3d(Inches.of(-4.000), Inches.of(6.500), Inches.of(16.331), Rotation3d.kZero);
public static final Rotation2d absEncoderOffset = new Rotation2d(5.157);
public static final Rotation2d mechanismOffset = Rotation2d.kZero;
public static final double upperLimitRad = Units.degreesToRadians(270);
Expand Down
Loading