Skip to content

Commit

Permalink
Fix feedback tuner start
Browse files Browse the repository at this point in the history
  • Loading branch information
rbrott committed Oct 7, 2023
1 parent 4ff7513 commit fc9b93a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public void runOpMode() throws InterruptedException {

while (opModeIsActive()) {
Actions.runBlocking(
drive.actionBuilder(drive.pose)
drive.actionBuilder(new Pose2d(0, 0, 0))
.lineToX(DISTANCE)
.lineToX(0)
.build());
Expand All @@ -31,7 +31,7 @@ public void runOpMode() throws InterruptedException {

while (opModeIsActive()) {
Actions.runBlocking(
drive.actionBuilder(drive.pose)
drive.actionBuilder(new Pose2d(0, 0, 0))
.lineToX(DISTANCE)
.lineToX(0)
.build());
Expand Down

0 comments on commit fc9b93a

Please sign in to comment.