Skip to content

Commit

Permalink
Bump RR
Browse files Browse the repository at this point in the history
  • Loading branch information
rbrott committed Jan 3, 2023
1 parent d0b06e2 commit 4fc5d64
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion TeamCode/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ dependencies {
annotationProcessor files('lib/OpModeAnnotationProcessor.jar')

implementation 'com.acmerobotics.dashboard:dashboard:0.4.7'
implementation 'com.acmerobotics.roadrunner:core:1.0.0-beta0'
implementation 'com.acmerobotics.roadrunner:core:1.0.0-beta1'
implementation 'com.acmerobotics.roadrunner:actions:1.0.0-beta1'

implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.7'
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ public void runOpMode() throws InterruptedException {
while (opModeIsActive()) {
runBlocking(
drive.actionBuilder(drive.pose)
.forward(DISTANCE)
.forward(-DISTANCE)
.lineToX(DISTANCE)
.lineToX(0)
.build());
}
} else if (TuningOpModes.DRIVE_CLASS.equals(TankDrive.class)) {
Expand All @@ -31,8 +31,8 @@ public void runOpMode() throws InterruptedException {
while (opModeIsActive()) {
runBlocking(
drive.actionBuilder(drive.pose)
.forward(DISTANCE)
.forward(-DISTANCE)
.lineToX(DISTANCE)
.lineToX(0)
.build());
}
} else {
Expand Down

0 comments on commit 4fc5d64

Please sign in to comment.