Class MecanumDrive
- All Implemented Interfaces:
AutoCloseable, Sendable
Mecanum drives are rectangular with one wheel on each corner. Each wheel has rollers toed in 45 degrees toward the front or back. When looking at the wheels from the top, the roller axles should form an X across the robot. Each drive() function provides different inverse kinematic relations for a Mecanum drive robot.
Drive base diagram:
\\_______/ \\ | | / | | /_|___|_\\ / \\
Each drive() function provides different inverse kinematic relations for a Mecanum drive robot.
This library uses the NWU axes convention (North-West-Up as external reference in the world frame). The positive X axis points ahead, the positive Y axis points to the left, and the positive Z axis points up. Rotations follow the right-hand rule, so counterclockwise rotation around the Z axis is positive.
Inputs smaller then 0.02 will be set to
0, and larger values will be scaled so that the full range is still used. This deadband value can
be changed with RobotDriveBase.setDeadband(double).
MotorSafety is enabled by default. The driveCartesian or
drivePolar methods should be called periodically to avoid Motor Safety timeouts.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classWheel velocities for a mecanum drive.Nested classes/interfaces inherited from class RobotDriveBase
RobotDriveBase.MotorType -
Field Summary
Fields inherited from class RobotDriveBase
kDefaultDeadband, kDefaultMaxOutput, m_deadband, m_maxOutput -
Constructor Summary
ConstructorsConstructorDescriptionMecanumDrive(DoubleConsumer frontLeftMotor, DoubleConsumer rearLeftMotor, DoubleConsumer frontRightMotor, DoubleConsumer rearRightMotor) Construct a MecanumDrive.MecanumDrive(MotorController frontLeftMotor, MotorController rearLeftMotor, MotorController frontRightMotor, MotorController rearRightMotor) Construct a MecanumDrive. -
Method Summary
Modifier and TypeMethodDescriptionvoidclose()voiddriveCartesian(double xVelocity, double yVelocity, double zRotation) Drive method for Mecanum platform.voiddriveCartesian(double xVelocity, double yVelocity, double zRotation, Rotation2d gyroAngle) Drive method for Mecanum platform.static MecanumDrive.WheelVelocitiesdriveCartesianIK(double xVelocity, double yVelocity, double zRotation) Cartesian inverse kinematics for Mecanum platform.static MecanumDrive.WheelVelocitiesdriveCartesianIK(double xVelocity, double yVelocity, double zRotation, Rotation2d gyroAngle) Cartesian inverse kinematics for Mecanum platform.voiddrivePolar(double magnitude, Rotation2d angle, double zRotation) Drive method for Mecanum platform.Returns a description to print when an error occurs.voidinitSendable(SendableBuilder builder) Initializes thisSendableobject.voidCalled to stop the motor when the timeout expires.Methods inherited from class RobotDriveBase
feedWatchdog, normalize, setDeadband, setMaxOutputMethods inherited from class MotorSafety
check, checkMotors, feed, getExpiration, isAlive, isSafetyEnabled, setExpiration, setSafetyEnabled
-
Constructor Details
-
MecanumDrive
public MecanumDrive(MotorController frontLeftMotor, MotorController rearLeftMotor, MotorController frontRightMotor, MotorController rearRightMotor) Construct a MecanumDrive.If a motor needs to be inverted, do so before passing it in.
- Parameters:
frontLeftMotor- The motor on the front-left corner.rearLeftMotor- The motor on the rear-left corner.frontRightMotor- The motor on the front-right corner.rearRightMotor- The motor on the rear-right corner.
-
MecanumDrive
public MecanumDrive(DoubleConsumer frontLeftMotor, DoubleConsumer rearLeftMotor, DoubleConsumer frontRightMotor, DoubleConsumer rearRightMotor) Construct a MecanumDrive.If a motor needs to be inverted, do so before passing it in.
- Parameters:
frontLeftMotor- The setter for the motor on the front-left corner.rearLeftMotor- The setter for the motor on the rear-left corner.frontRightMotor- The setter for the motor on the front-right corner.rearRightMotor- The setter for the motor on the rear-right corner.
-
-
Method Details
-
close
- Specified by:
closein interfaceAutoCloseable
-
driveCartesian
Drive method for Mecanum platform.Angles are measured counterclockwise from the positive X axis. The robot's velocity is independent of its angle or rotation rate.
- Parameters:
xVelocity- The robot's velocity along the X axis [-1.0..1.0]. Forward is positive.yVelocity- The robot's velocity along the Y axis [-1.0..1.0]. Left is positive.zRotation- The robot's rotation rate around the Z axis [-1.0..1.0]. Counterclockwise is positive.
-
driveCartesian
public void driveCartesian(double xVelocity, double yVelocity, double zRotation, Rotation2d gyroAngle) Drive method for Mecanum platform.Angles are measured counterclockwise from the positive X axis. The robot's velocity is independent of its angle or rotation rate.
- Parameters:
xVelocity- The robot's velocity along the X axis [-1.0..1.0]. Forward is positive.yVelocity- The robot's velocity along the Y axis [-1.0..1.0]. Left is positive.zRotation- The robot's rotation rate around the Z axis [-1.0..1.0]. Counterclockwise is positive.gyroAngle- The gyro heading around the Z axis. Use this to implement field-oriented controls.
-
drivePolar
Drive method for Mecanum platform.Angles are measured counterclockwise from straight ahead. The velocity at which the robot drives (translation) is independent of its angle or rotation rate.
- Parameters:
magnitude- The robot's velocity at a given angle [-1.0..1.0]. Forward is positive.angle- The gyro heading around the Z axis at which the robot drives.zRotation- The robot's rotation rate around the Z axis [-1.0..1.0]. Counterclockwise is positive.
-
driveCartesianIK
public static MecanumDrive.WheelVelocities driveCartesianIK(double xVelocity, double yVelocity, double zRotation) Cartesian inverse kinematics for Mecanum platform.Angles are measured counterclockwise from the positive X axis. The robot's velocity is independent of its angle or rotation rate.
- Parameters:
xVelocity- The robot's velocity along the X axis [-1.0..1.0]. Forward is positive.yVelocity- The robot's velocity along the Y axis [-1.0..1.0]. Left is positive.zRotation- The robot's rotation rate around the Z axis [-1.0..1.0]. Counterclockwise is positive.- Returns:
- Wheel velocities [-1.0..1.0].
-
driveCartesianIK
public static MecanumDrive.WheelVelocities driveCartesianIK(double xVelocity, double yVelocity, double zRotation, Rotation2d gyroAngle) Cartesian inverse kinematics for Mecanum platform.Angles are measured clockwise from the positive X axis. The robot's velocity is independent of its angle or rotation rate.
- Parameters:
xVelocity- The robot's velocity along the X axis [-1.0..1.0]. Forward is positive.yVelocity- The robot's velocity along the Y axis [-1.0..1.0]. Left is positive.zRotation- The robot's rotation rate around the Z axis [-1.0..1.0]. Counterclockwise is positive.gyroAngle- The gyro heading around the Z axis. Use this to implement field-oriented controls.- Returns:
- Wheel velocities [-1.0..1.0].
-
stopMotor
Description copied from class:MotorSafetyCalled to stop the motor when the timeout expires.- Specified by:
stopMotorin classRobotDriveBase
-
getDescription
Description copied from class:MotorSafetyReturns a description to print when an error occurs.- Specified by:
getDescriptionin classRobotDriveBase- Returns:
- Description to print when an error occurs.
-
initSendable
Description copied from interface:SendableInitializes thisSendableobject.- Specified by:
initSendablein interfaceSendable- Parameters:
builder- sendable builder
-