functional pathplanner... needs autos.

This commit is contained in:
C4llSiqn
2025-01-17 16:59:32 -07:00
parent 1bd3c12327
commit dd033d0768
3 changed files with 10 additions and 9 deletions
+2 -1
View File
@@ -103,7 +103,8 @@ public final class Constants {
public static final Trim POINTLESS_TRIM = new Trim("Pointless Trim", Double.MAX_VALUE, Double.MIN_VALUE, 1.d, 10);
private static final class ModuleSpecificConstants {
private static final class ModuleSpecificConstants { //2025
//Front Left
private static final Angle FRONT_LEFT_ENCODER_OFFSET = Rotations.of(0.229736328125);
private static final boolean FRONT_LEFT_DRIVE_MOTOR_INVERTED = true;
private static final boolean FRONT_LEFT_STEER_MOTOR_INVERTED = true;
@@ -74,7 +74,7 @@ public class SwerveDrive extends Subsystem {
AutoBuilder.configure(
() -> {
var pose = swerveDriveTrain.samplePoseAt(Utils.getCurrentTimeSeconds()).orElse(new Pose2d());
pose = new Pose2d(pose.getX(), pose.getY(), pose.getRotation().times(-1));
// pose = new Pose2d(pose.getX(), pose.getY(), pose.getRotation().times(-1));
return pose;//getRotation().times(-1)
}, // Robot pose supplier
swerveDriveTrain::resetPose, // Method to reset odometry (will be called if your auto has a starting pose)