PathFollower

public abstract class PathFollower

Generic Path follower for time-independent pose reference tracking.

Parameters

clock

clock

Inheritors

Constructors

Link copied to clipboard
public PathFollower PathFollower(Pose2d admissibleError, NanoClock clock)
public PathFollower PathFollower(Pose2d admissibleError)

Properties

Link copied to clipboard
private final Pose2d admissibleError
Link copied to clipboard
private final NanoClock clock
Link copied to clipboard
private Pose2d lastError

Robot pose error computed in the last update call.

Link copied to clipboard
private Path path

Path being followed if isFollowing is true.

Functions

Link copied to clipboard
public Unit followPath(Path path)

Follow the given path.

Link copied to clipboard
protected final Pose2d getAdmissibleError()
Link copied to clipboard
protected final NanoClock getClock()
Link copied to clipboard
public abstract Pose2d getLastError()

Robot pose error computed in the last update call.

Link copied to clipboard
public final Path getPath()

Path being followed if isFollowing is true.

Link copied to clipboard
protected abstract DriveSignal internalUpdate(Pose2d currentPose, Pose2d currentRobotVel)
Link copied to clipboard
public final Boolean isFollowing()

Returns false if the current path has finished executing.

Link copied to clipboard
protected abstract Unit setLastError(Pose2d lastError)
Link copied to clipboard
protected final Unit setPath(Path path)
Link copied to clipboard
public final DriveSignal update(Pose2d currentPose)
public final DriveSignal update(Pose2d currentPose, Pose2d currentRobotVel)

Run a single iteration of the path follower.