AbstractTankDrive

public abstract class AbstractTankDrive extends Drive

This class provides the basic functionality of a tank/differential drive using TankKinematics.

Parameters

trackWidth

Lateral distance between pairs of wheels on different sides of the robot.

Constructors

Link copied to clipboard
public AbstractTankDrive AbstractTankDrive(Double trackWidth, 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 Double trackWidth

Functions

Link copied to clipboard
Link copied to clipboard

Localizer used to determine the evolution of poseEstimate.

Link copied to clipboard
protected final Double getTrackWidth()
Link copied to clipboard
public abstract List<Double> getWheelPositions()

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
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.

Link copied to clipboard
public abstract Unit setMotorPowers(Double left, Double right)

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

Link copied to clipboard
public abstract Unit setWheelVelocities(List<Double> velocities, List<Double> accelerations)

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