TrajectoryFollower

abstract class TrajectoryFollower @JvmOverloads constructor(admissibleError: Pose2d = Pose2d(), timeout: Double = 0.0, val clock: NanoClock = NanoClock.system)

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
constructor(admissibleError: Pose2d = Pose2d(), timeout: Double = 0.0, clock: NanoClock = NanoClock.system)

Properties

Link copied to clipboard
protected val clock: NanoClock
Link copied to clipboard
abstract var lastError: Pose2d

Robot pose error computed in the last update call.

Link copied to clipboard
lateinit var trajectory: Trajectory

Trajectory being followed if isFollowing is true.

Functions

Link copied to clipboard

Returns the elapsed time since the last followTrajectory call.

Link copied to clipboard
open fun followTrajectory(trajectory: Trajectory)

Follow the given trajectory.

Link copied to clipboard
protected abstract fun internalUpdate(currentPose: Pose2d, currentRobotVel: Pose2d?): DriveSignal
Link copied to clipboard

Returns true if the current trajectory is currently executing.

Link copied to clipboard
fun update(currentPose: Pose2d, currentRobotVel: Pose2d? = null): DriveSignal

Run a single iteration of the trajectory follower.