PIDController

class PIDController @JvmOverloads constructor(pid: PIDCoefficients, clock: NanoClock = NanoClock.system)

PID controller.

Parameters

pid

traditional PID coefficients

clock

clock

Constructors

Link copied to clipboard
constructor(pid: PIDCoefficients, clock: NanoClock = NanoClock.system)

Properties

Link copied to clipboard
Link copied to clipboard

Error computed in the last call to update.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Target position (that is, the controller setpoint).

Link copied to clipboard

Target velocity.

Link copied to clipboard

The position error considered tolerable for isAtSetPoint to return true.

Functions

Link copied to clipboard

Returns whether the controller is at the target position with an error within tolerance.

Link copied to clipboard
fun reset()

Reset the controller's integral sum.

Link copied to clipboard
fun setInputBounds(min: Double, max: Double)

Sets bound on the input of the controller. The min and max values are considered modularly-equivalent (that is, the input wraps around).

Link copied to clipboard
fun setOutputBounds(min: Double, max: Double)

Sets bounds on the output of the controller.

Link copied to clipboard
fun setTarget(targetPosition: Double, targetVelocity: Double = this.targetVelocity)

Sets the target position, velocity, and acceleration.

Link copied to clipboard
fun update(measuredPosition: Double, measuredVelocity: Double? = null): Double

Run a single iteration of the controller.