PathFollower

abstract class PathFollower @JvmOverloads constructor(val admissibleError: Pose2d, val clock: NanoClock = NanoClock.system)

Generic Path follower for time-independent pose reference tracking.

Parameters

clock

clock

Inheritors

Constructors

Link copied to clipboard
constructor(admissibleError: Pose2d, clock: NanoClock = NanoClock.system)

Properties

Link copied to clipboard
protected val admissibleError: Pose2d
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 path: Path

Path being followed if isFollowing is true.

Functions

Link copied to clipboard
open fun followPath(path: Path)

Follow the given path.

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

Returns false if the current path has finished executing.

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

Run a single iteration of the path follower.