TrajectoryFollower

public abstract class TrajectoryFollower

Generic Trajectory follower for time-based pose reference tracking.

Parameters

admissibleError

admissible/satisfactory pose error at the end of each move

timeout

max time to wait for the error to be admissible

clock

clock

Inheritors

Constructors

Link copied to clipboard

Properties

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

Trajectory being followed if isFollowing is true.

Functions

Link copied to clipboard
public final Double elapsedTime()

Returns the elapsed time since the last followTrajectory call.

Link copied to clipboard
public Unit followTrajectory(Trajectory trajectory)

Follow the given trajectory.

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 Trajectory getTrajectory()

Trajectory 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 true if the current trajectory is currently executing.

Link copied to clipboard
protected abstract Unit setLastError(Pose2d lastError)
Link copied to clipboard
protected final Unit setTrajectory(Trajectory trajectory)
Link copied to clipboard
public final DriveSignal update(Pose2d currentPose)
public final DriveSignal update(Pose2d currentPose, Pose2d currentRobotVel)

Run a single iteration of the trajectory follower.