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
6 changes: 3 additions & 3 deletions advantagescope/Robot_Axolotl/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,17 +108,17 @@
"zeroedRotations": [
{
"axis": "x",
"degrees": 0
"degrees": 90
},
{
"axis": "y",
"degrees": 0
},
{
"axis": "z",
"degrees": -90
"degrees": -270
}],
"zeroedPosition": [-0.73, 0, -0.39]
"zeroedPosition": [-0.39, 0, -0.73]
},
{
"zeroedRotations": [
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ public static class LEDConstants {
}

public static class ModelConstants {
// Offsets of each major subsytem, in meters, relative to
// Offsets of each major subsytem, in meters, relative to
// robot center (floor), for use with the AdvantageScope model.
public static final Pose3d ELEVATOR_OFFSET = new Pose3d(0.1905, 0.0, 0.26, new Rotation3d());
public static final Pose3d ELBOW_OFFSET = new Pose3d(0.26, 0.0, 0.29, new Rotation3d());
Expand All @@ -275,7 +275,7 @@ public static class ModelConstants {
/** Angle limits, in radians, of the climber. */
public static final double UPPIES_MIN_ANGLE = -0.2, UPPIES_MAX_ANGLE = -2;
/** Angle limits, in radians, of the wrist. */
public static final double WRIST_MIN_ANGLE = 2.6, WRIST_MAX_ANGLE = -0.7;
public static final double WRIST_MIN_ANGLE = 2.25, WRIST_MAX_ANGLE = -1.05;
}

}