no roller
This commit is contained in:
parent
22a2c6627e
commit
9f8bd3dbaa
|
@ -103,10 +103,11 @@ public class SampleMecanumDrive extends MecanumDrive {
|
||||||
// For example, if +Y in this diagram faces downwards, you would use AxisDirection.NEG_Y.
|
// For example, if +Y in this diagram faces downwards, you would use AxisDirection.NEG_Y.
|
||||||
// BNO055IMUUtil.remapZAxis(imu, 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");
|
rightRear = hardwareMap.get(DcMotorEx.class, "backRight");
|
||||||
rightFront = hardwareMap.get(DcMotorEx.class, "frontRight");
|
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);
|
motors = Arrays.asList(leftFront, leftRear, rightRear, rightFront);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue