Skip to content

Commit

Permalink
reversed encoder direction
Browse files Browse the repository at this point in the history
  • Loading branch information
schen479 committed Dec 10, 2024
1 parent 49baade commit 5005f0a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ Set the direction that each of the two odometry pods count. The X (forward) pod
increase when you move the robot forward. And the Y (strafe) pod should increase when
you move the robot to the left.
*/
public GoBildaPinpointDriver.EncoderDirection xDirection = GoBildaPinpointDriver.EncoderDirection.FORWARD;
public GoBildaPinpointDriver.EncoderDirection yDirection = GoBildaPinpointDriver.EncoderDirection.FORWARD;
public GoBildaPinpointDriver.EncoderDirection xDirection = GoBildaPinpointDriver.EncoderDirection.REVERSED;
public GoBildaPinpointDriver.EncoderDirection yDirection = GoBildaPinpointDriver.EncoderDirection.REVERSED;

/*
Use the pinpoint IMU for tuning
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
import java.util.List;

public final class TuningOpModes {
public static final Class<?> DRIVE_CLASS = SparkFunOTOSDrive.class; // TODO: change to your drive class i.e. PinpointDrive if using pinpoint
public static final Class<?> DRIVE_CLASS = PinpointDrive.class; // TODO: change to your drive class i.e. PinpointDrive if using pinpoint

public static final String GROUP = "quickstart";
public static final boolean DISABLED = false;
Expand Down

0 comments on commit 5005f0a

Please sign in to comment.