AbstractMecanumDrive

abstract class AbstractMecanumDrive @JvmOverloads constructor(val trackWidth: Double, val wheelBase: Double = trackWidth, val lateralMultiplier: Double = 1.0, val externalHeadingSensor: AngleSensor? = null) : 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
constructor(trackWidth: Double, wheelBase: Double = trackWidth, lateralMultiplier: Double = 1.0, externalHeadingSensor: AngleSensor? = null)

Properties

Link copied to clipboard
protected val externalHeadingSensor: AngleSensor? = null
Link copied to clipboard
protected val lateralMultiplier: Double = 1.0
Link copied to clipboard
open override var localizer: Localizer

Localizer used to determine the evolution of poseEstimate.

Link copied to clipboard
protected val trackWidth: Double
Link copied to clipboard
protected val wheelBase: Double

Functions

Link copied to clipboard
abstract fun getWheelPositions(): List<Double>

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
open override fun setDrivePower(drivePower: Pose2d)

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

Link copied to clipboard
open override fun 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
abstract fun setMotorPowers(frontLeft: Double, backLeft: Double, backRight: Double, frontRight: Double)

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

Link copied to clipboard
abstract fun setWheelVelocities(velocities: List<Double>, accelerations: List<Double>)

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