MecanumDrive

open class MecanumDrive @JvmOverloads constructor(val motors: MotorGroup, trackWidth: Double = 1.0, wheelBase: Double = trackWidth, lateralMultiplier: Double = 1.0, externalHeadingSensor: AngleSensor? = null) : AbstractMecanumDrive, DriveComponent

A Component implementation of a mecanum drive.

Constructors

Link copied to clipboard
constructor(motors: MotorGroup, constraints: MecanumConstraints, externalHeadingSensor: AngleSensor? = null)

Constructs a mecanum drive using constraints.

constructor(frontLeft: Motor, backLeft: Motor, backRight: Motor, frontRight: Motor, externalHeadingSensor: AngleSensor? = null, constraints: MecanumConstraints = MecanumConstraints(1.0, 1.0, 1.0, 1.0))

Constructs a mecanum drive from its individual motors.

constructor(motors: MotorGroup, trackWidth: Double = 1.0, wheelBase: Double = trackWidth, lateralMultiplier: Double = 1.0, externalHeadingSensor: AngleSensor? = null)

Properties

Link copied to clipboard
protected val motors: MotorGroup

All the motors in this drive.

Functions

Link copied to clipboard
open override fun getWheelPositions(): List<Double>
Link copied to clipboard
open override fun getWheelVelocities(): List<Double>
Link copied to clipboard
open override fun setMotorPowers(frontLeft: Double, backLeft: Double, backRight: Double, frontRight: Double)
Link copied to clipboard
open override fun setRunMode(runMode: Motor.RunMode)
Link copied to clipboard
open override fun setWheelVelocities(velocities: List<Double>, accelerations: List<Double>)
Link copied to clipboard
open override fun setZeroPowerBehavior(zeroPowerBehavior: Motor.ZeroPowerBehavior)
Link copied to clipboard
open override fun update()

This method is called repeatedly by the CommandScheduler.