AbstractSwerveDrive

public abstract class AbstractSwerveDrive extends Drive

This class provides the basic functionality of a swerve drive using SwerveKinematics.

Parameters

modules

the modules of the swerve drive, starting with the front left and moving counter-clockwise.

modulePositions

the positions of all the modules relative to the center of rotation of the robot

Constructors

Link copied to clipboard
public AbstractSwerveDrive AbstractSwerveDrive(SwerveModule frontLeft, SwerveModule backLeft, SwerveModule backRight, SwerveModule frontRight, Double trackWidth, Double wheelBase, AngleSensor externalHeadingSensor)
public AbstractSwerveDrive AbstractSwerveDrive(SwerveModule frontLeft, SwerveModule backLeft, SwerveModule backRight, SwerveModule frontRight, Double trackWidth, Double wheelBase)
public AbstractSwerveDrive AbstractSwerveDrive(SwerveModule frontLeft, SwerveModule backLeft, SwerveModule backRight, SwerveModule frontRight, Double trackWidth)
public AbstractSwerveDrive AbstractSwerveDrive(SwerveModule left, SwerveModule right, Double trackWidth, AngleSensor externalHeadingSensor)
public AbstractSwerveDrive AbstractSwerveDrive(List<SwerveModule> modules, List<Vector2d> modulePositions, AngleSensor externalHeadingSensor)

Properties

Link copied to clipboard
Link copied to clipboard

Localizer used to determine the evolution of poseEstimate.

Link copied to clipboard
private final List<Vector2d> modulePositions
Link copied to clipboard
private final List<SwerveModule> modules

Functions

Link copied to clipboard
Link copied to clipboard

Localizer used to determine the evolution of poseEstimate.

Link copied to clipboard
protected final List<Vector2d> getModulePositions()
Link copied to clipboard
protected final List<SwerveModule> getModules()
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.