Bump RR FTC
This commit is contained in:
@ -33,6 +33,6 @@ dependencies {
|
||||
implementation project(':FtcRobotController')
|
||||
annotationProcessor files('lib/OpModeAnnotationProcessor.jar')
|
||||
|
||||
implementation "com.acmerobotics.roadrunner:ftc:0.1.10"
|
||||
implementation "com.acmerobotics.roadrunner:ftc:0.1.11"
|
||||
implementation "com.acmerobotics.dashboard:dashboard:0.4.14"
|
||||
}
|
||||
|
@ -5,6 +5,7 @@ import com.acmerobotics.dashboard.config.reflection.ReflectionConfig;
|
||||
import com.acmerobotics.roadrunner.MotorFeedforward;
|
||||
import com.acmerobotics.roadrunner.Pose2d;
|
||||
import com.acmerobotics.roadrunner.ftc.AngularRampLogger;
|
||||
import com.acmerobotics.roadrunner.ftc.DeadWheelDirectionDebugger;
|
||||
import com.acmerobotics.roadrunner.ftc.DriveType;
|
||||
import com.acmerobotics.roadrunner.ftc.DriveView;
|
||||
import com.acmerobotics.roadrunner.ftc.DriveViewFactory;
|
||||
@ -157,6 +158,7 @@ public final class TuningOpModes {
|
||||
manager.register(metaForClass(LateralRampLogger.class), new LateralRampLogger(dvf));
|
||||
manager.register(metaForClass(ManualFeedforwardTuner.class), new ManualFeedforwardTuner(dvf));
|
||||
manager.register(metaForClass(MecanumMotorDirectionDebugger.class), new MecanumMotorDirectionDebugger(dvf));
|
||||
manager.register(metaForClass(DeadWheelDirectionDebugger.class), new DeadWheelDirectionDebugger(dvf));
|
||||
|
||||
manager.register(metaForClass(ManualFeedbackTuner.class), ManualFeedbackTuner.class);
|
||||
manager.register(metaForClass(SplineTest.class), SplineTest.class);
|
||||
|
Reference in New Issue
Block a user