HolonomicPIDVAFollower

public final class HolonomicPIDVAFollower extends TrajectoryFollower

Traditional PID controller with feedforward velocity and acceleration components to follow a trajectory. More specifically, the feedback is applied to the components of the robot's pose (x position, y position, and heading) to determine the velocity correction. The feedforward components are instead applied at the wheel level.

Parameters

axialCoeffs

PID coefficients for the robot axial controller (robot X)

lateralCoeffs

PID coefficients for the robot lateral controller (robot Y)

headingCoeffs

PID coefficients for the robot heading controller

admissibleError

admissible/satisfactory pose error at the end of each move

timeout

max time to wait for the error to be admissible

clock

clock

Constructors

Link copied to clipboard
public HolonomicPIDVAFollower HolonomicPIDVAFollower(PIDCoefficients axialCoeffs, PIDCoefficients lateralCoeffs, PIDCoefficients headingCoeffs, Pose2d admissibleError, Double timeout, NanoClock clock)
public HolonomicPIDVAFollower HolonomicPIDVAFollower(PIDCoefficients axialCoeffs, PIDCoefficients lateralCoeffs, PIDCoefficients headingCoeffs, Pose2d admissibleError, Double timeout)
public HolonomicPIDVAFollower HolonomicPIDVAFollower(PIDCoefficients axialCoeffs, PIDCoefficients lateralCoeffs, PIDCoefficients headingCoeffs, Pose2d admissibleError)

Properties

Link copied to clipboard
private Pose2d lastError

Robot pose error computed in the last update call.

Functions

Link copied to clipboard
public Unit followTrajectory(Trajectory trajectory)

Follow the given trajectory.

Link copied to clipboard

Robot pose error computed in the last update call.

Link copied to clipboard
protected DriveSignal internalUpdate(Pose2d currentPose, Pose2d currentRobotVel)
Link copied to clipboard
protected Unit setLastError(Pose2d lastError)

Robot pose error computed in the last update call.