Bump RR
This commit is contained in:
@ -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'
|
||||
}
|
||||
|
@ -19,8 +19,8 @@ public final class ManualFeedbackTuner extends ActionOpMode {
|
||||
while (opModeIsActive()) {
|
||||
runBlocking(
|
||||
drive.actionBuilder(drive.pose)
|
||||
.forward(DISTANCE)
|
||||
.forward(-DISTANCE)
|
||||
.lineToX(DISTANCE)
|
||||
.lineToX(0)
|
||||
.build());
|
||||
}
|
||||
} else if (TuningOpModes.DRIVE_CLASS.equals(TankDrive.class)) {
|
||||
@ -31,8 +31,8 @@ public final class ManualFeedbackTuner extends ActionOpMode {
|
||||
while (opModeIsActive()) {
|
||||
runBlocking(
|
||||
drive.actionBuilder(drive.pose)
|
||||
.forward(DISTANCE)
|
||||
.forward(-DISTANCE)
|
||||
.lineToX(DISTANCE)
|
||||
.lineToX(0)
|
||||
.build());
|
||||
}
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user