Skip to content

Commit

Permalink
Merge branch 'fix/calibrate-mttd' into comp/mttd
Browse files Browse the repository at this point in the history
  • Loading branch information
JayK445 committed Nov 10, 2023
2 parents 7bec686 + c57326f commit 4ad9b5d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/frc/robot/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ public static final class Module1 { // historically front right

public static final double STEER_OFFSET =
IS_COMP_BOT
? -Math.toRadians(8.07400 + 180) // comp bot offset
? -Math.toRadians(343.432) // comp bot offset
: -Math.toRadians(184.833984); // practice bot offset
}

Expand All @@ -163,7 +163,7 @@ public static final class Module2 { // historically front left

public static final double STEER_OFFSET =
IS_COMP_BOT
? -Math.toRadians(274.562 + 180) // comp bot offset
? -Math.toRadians(221.388) // comp bot offset
: -Math.toRadians(307.968750); // practice bot offset
}

Expand All @@ -174,7 +174,7 @@ public static final class Module3 { // historically back left

public static final double STEER_OFFSET =
IS_COMP_BOT
? -Math.toRadians(225.082 + 180) // comp bot offset
? -Math.toRadians(134.115) // comp bot offset
: -Math.toRadians(306.738281 + 180); // practice bot offset
}

Expand All @@ -185,7 +185,7 @@ public static final class Module4 { // historically back right

public static final double STEER_OFFSET =
IS_COMP_BOT
? -Math.toRadians(335.124 + 180) // comp bot offset
? -Math.toRadians(20.4750) // comp bot offset
: -Math.toRadians(60.908203); // practice bot offset
}
}
Expand Down

0 comments on commit 4ad9b5d

Please sign in to comment.