MecanumDrive

public class MecanumDrive extends AbstractMecanumDrive implements DriveComponent

A Component implementation of a mecanum drive.

Constructors

Link copied to clipboard
public MecanumDrive MecanumDrive(MotorGroup motors, MecanumConstraints constraints, AngleSensor externalHeadingSensor)

Constructs a mecanum drive using constraints.

Constructs a mecanum drive using constraints.

public MecanumDrive MecanumDrive(Motor frontLeft, Motor backLeft, Motor backRight, Motor frontRight, AngleSensor externalHeadingSensor, MecanumConstraints constraints)

Constructs a mecanum drive from its individual motors.

public MecanumDrive MecanumDrive(Motor frontLeft, Motor backLeft, Motor backRight, Motor frontRight, AngleSensor externalHeadingSensor)

Constructs a mecanum drive from its individual motors.

public MecanumDrive MecanumDrive(Motor frontLeft, Motor backLeft, Motor backRight, Motor frontRight)

Constructs a mecanum drive from its individual motors.

public MecanumDrive MecanumDrive(MotorGroup motors, Double trackWidth, Double wheelBase, Double lateralMultiplier, AngleSensor externalHeadingSensor)
public MecanumDrive MecanumDrive(MotorGroup motors, Double trackWidth, Double wheelBase, Double lateralMultiplier)
public MecanumDrive MecanumDrive(MotorGroup motors, Double trackWidth, Double wheelBase)
public MecanumDrive MecanumDrive(MotorGroup motors, Double trackWidth)

Properties

Link copied to clipboard
protected final MotorGroup motors

All the motors in this drive.

Functions

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
public Unit setMotorPowers(Double frontLeft, Double backLeft, Double backRight, Double frontRight)
Link copied to clipboard
public Unit setRunMode(Motor.RunMode runMode)
Link copied to clipboard
public Unit setWheelVelocities(List<Double> velocities, List<Double> accelerations)
Link copied to clipboard
Link copied to clipboard
public Unit update()

This method is called repeatedly by the CommandScheduler.