PIDDiffSwerveModule

public abstract class PIDDiffSwerveModule extends SwerveModule

A basic SwerveModule implementation using a PIDController to control a differential swerve module.

Constructors

Link copied to clipboard
public PIDDiffSwerveModule PIDDiffSwerveModule(PIDCoefficients pidCoefficients, Feedforward feedforward)

Properties

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
protected final Feedforward getFeedforward()
Link copied to clipboard
public abstract List<Double> getGearPositions()

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

Link copied to clipboard
public abstract List<Angle> getGearRotations()

Returns the total rotation of the gears. Angles should exactly match the ordering in setMotorPowers.

Link copied to clipboard

Returns the velocities of the gears in linear distance units. Velocities should exactly match the ordering in setMotorPowers.

Link copied to clipboard
Link copied to clipboard
protected final PIDController getPidController()
Link copied to clipboard

Returns the positions of the wheel in linear distance units.

Link copied to clipboard

Returns the velocity of the wheel in linear distance units.

Link copied to clipboard
public final Unit setDrivePower(Double power)

Sets the wheel motor power (normalized voltage) on the interval [-1.0, 1.0].

Link copied to clipboard
protected final Unit setFeedforward(Feedforward feedforward)
Link copied to clipboard
public final Unit setModuleOrientation(Angle angle)
Link copied to clipboard
public abstract Unit setMotorPowers(Double top, Double bottom)

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

Link copied to clipboard
public final Unit setWheelVelocity(Double velocity, Double acceleration)

Sets the wheel velocity (and acceleration) of the wheel motor.

Link copied to clipboard
public Unit update()

Updates the module.