AbstractMecanumDrive

public abstract class AbstractMecanumDrive extends Drive

This class provides the basic functionality of a mecanum drive using MecanumKinematics.

Parameters

trackWidth

Lateral distance between pairs of wheels on different sides of the robot.

wheelBase

Distance between pairs of wheels on the same side of the robot.

lateralMultiplier

Lateral multiplier.

Constructors

Link copied to clipboard
public AbstractMecanumDrive AbstractMecanumDrive(Double trackWidth, Double wheelBase, Double lateralMultiplier, AngleSensor externalHeadingSensor)
public AbstractMecanumDrive AbstractMecanumDrive(Double trackWidth, Double wheelBase, Double lateralMultiplier)

Properties

Link copied to clipboard
Link copied to clipboard
private final Double lateralMultiplier
Link copied to clipboard

Localizer used to determine the evolution of poseEstimate.

Link copied to clipboard
private final Double trackWidth
Link copied to clipboard
private final Double wheelBase

Functions

Link copied to clipboard
Link copied to clipboard
protected final Double getLateralMultiplier()
Link copied to clipboard

Localizer used to determine the evolution of poseEstimate.

Link copied to clipboard
protected final Double getTrackWidth()
Link copied to clipboard
protected final Double getWheelBase()
Link copied to clipboard
public abstract List<Double> getWheelPositions()

Returns the positions of the wheels in linear distance units. Positions should exactly match the ordering in setMotorPowers.

Link copied to clipboard

Returns the velocities of the wheels in linear distance units. Positions should exactly match the ordering in setMotorPowers.

Link copied to clipboard
public Unit setDrivePower(Pose2d drivePower)

Sets the current commanded drive state of the robot. Feedforward is not applied to drivePower.

Link copied to clipboard
public Unit setDriveSignal(DriveSignal driveSignal)

Sets the current commanded drive state of the robot. Feedforward is applied to driveSignal before it reaches the motors.

Link copied to clipboard
public Unit setLocalizer(Localizer localizer)

Localizer used to determine the evolution of poseEstimate.

Link copied to clipboard
public abstract Unit setMotorPowers(Double frontLeft, Double backLeft, Double backRight, Double frontRight)

Sets the following motor powers (normalized voltages). All arguments are on the interval [-1.0, 1.0].

Link copied to clipboard
public abstract Unit setWheelVelocities(List<Double> velocities, List<Double> accelerations)

Sets the wheel velocities (and accelerations) of each motor, in distance units per second. Velocities and accelerations match the ordering in setMotorPowers.