Skip to content

Commit

Permalink
Merge pull request #14 from BaronClaps/master
Browse files Browse the repository at this point in the history
Make distance to be consistently 48 inches
  • Loading branch information
AnyiLin authored Nov 28, 2024
2 parents 9765f23 + f14c3f0 commit a4ab959
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class ForwardTuner extends OpMode {

private Telemetry telemetryA;

public static double DISTANCE = 30;
public static double DISTANCE = 48;

/**
* This initializes the PoseUpdater as well as the FTC Dashboard telemetry.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class LateralTuner extends OpMode {

private Telemetry telemetryA;

public static double DISTANCE = 30;
public static double DISTANCE = 48;

/**
* This initializes the PoseUpdater as well as the FTC Dashboard telemetry.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public class ForwardVelocityTuner extends OpMode {

private PoseUpdater poseUpdater;

public static double DISTANCE = 40;
public static double DISTANCE = 48;
public static double RECORD_NUMBER = 10;

private Telemetry telemetryA;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public class StrafeVelocityTuner extends OpMode {

private PoseUpdater poseUpdater;

public static double DISTANCE = 40;
public static double DISTANCE = 48;
public static double RECORD_NUMBER = 10;

private Telemetry telemetryA;
Expand Down

0 comments on commit a4ab959

Please sign in to comment.