PIDController

public final class PIDController

PID controller.

Parameters

pid

traditional PID coefficients

clock

clock

Constructors

Properties

Link copied to clipboard
Link copied to clipboard
private final Double lastError

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
private Double tolerance

The position error considered tolerable for isAtSetPoint to return true.

Functions

Link copied to clipboard
public final Boolean getInputBounded()
Link copied to clipboard
public final Double getLastError()

Error computed in the last call to update.

Link copied to clipboard
public final Boolean getOutputBounded()
Link copied to clipboard
public final PIDCoefficients getPid()
Link copied to clipboard
public final Double getTargetPosition()

Target position (that is, the controller setpoint).

Link copied to clipboard
public final Double getTargetVelocity()

Target velocity.

Link copied to clipboard
public final Double getTolerance()

The position error considered tolerable for isAtSetPoint to return true.

Link copied to clipboard
public final Boolean isAtSetPoint()

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

Link copied to clipboard
public final Unit reset()

Reset the controller's integral sum.

Link copied to clipboard
public final Unit setInputBounded(Boolean inputBounded)
Link copied to clipboard
public final Unit setInputBounds(Double min, Double max)

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
public final Unit setOutputBounded(Boolean outputBounded)
Link copied to clipboard
public final Unit setOutputBounds(Double min, Double max)

Sets bounds on the output of the controller.

Link copied to clipboard
public final Unit setPid(PIDCoefficients pid)
Link copied to clipboard
public final Unit setTarget(Double targetPosition)
public final Unit setTarget(Double targetPosition, Double targetVelocity)

Sets the target position, velocity, and acceleration.

Link copied to clipboard
public final Unit setTargetPosition(Double targetPosition)

Target position (that is, the controller setpoint).

Link copied to clipboard
public final Unit setTargetVelocity(Double targetVelocity)

Target velocity.

Link copied to clipboard
public final Unit setTolerance(Double tolerance)

The position error considered tolerable for isAtSetPoint to return true.

Link copied to clipboard
public final Double update(Double measuredPosition)
public final Double update(Double measuredPosition, Double measuredVelocity)

Run a single iteration of the controller.