no roller

This commit is contained in:
ImposterVarunoverlord 2023-12-19 09:51:01 -06:00
parent 22a2c6627e
commit 9f8bd3dbaa
1 changed files with 3 additions and 2 deletions

View File

@ -103,10 +103,11 @@ public class SampleMecanumDrive extends MecanumDrive {
// For example, if +Y in this diagram faces downwards, you would use AxisDirection.NEG_Y.
// BNO055IMUUtil.remapZAxis(imu, AxisDirection.NEG_Y);
leftFront = hardwareMap.get(DcMotorEx.class, "frontLeft");
leftRear = hardwareMap.get(DcMotorEx.class, "backLeft");
rightRear = hardwareMap.get(DcMotorEx.class, "backRight");
rightFront = hardwareMap.get(DcMotorEx.class, "frontRight");
leftFront = hardwareMap.get(DcMotorEx.class, "frontLeft");
leftRear = hardwareMap.get(DcMotorEx.class, "backLeft");
motors = Arrays.asList(leftFront, leftRear, rightRear, rightFront);