Pingu

public final class Pingu

A class that extends the PIDController to include additional parameters.

Throws

if v, s, or g are not set and are then accessed.

Constructors

Link copied to clipboard
public Pingu Pingu(Double p, Double i, Double d, Double v, Double s, Double g)
public Pingu Pingu(Double p, Double i, Double d, Double v, Double s)
public Pingu Pingu(Double p, Double i, Double d, Double v)
public Pingu Pingu(Double p, Double i, Double d)

Properties

Link copied to clipboard
private Double d

The derivative gain.

Link copied to clipboard
private Double g

The gravity gain.

Link copied to clipboard
private Double i

The integral gain.

Link copied to clipboard
private Double p

The proportional gain.

Link copied to clipboard
private final PIDController pidController

Gets the PIDController instance with the current p, i, and d values.

Link copied to clipboard
private final ProfiledPIDController profiledPIDController
Link copied to clipboard
private Double s

The static gain.

Link copied to clipboard
private Double v

The velocity gain.

Functions

Link copied to clipboard
public final Double getD()

The derivative gain.

Link copied to clipboard
public final Double getG()

The gravity gain.

Link copied to clipboard
public final Double getI()

The integral gain.

Link copied to clipboard
public final Double getP()

The proportional gain.

Link copied to clipboard
public final PIDController getPidController()
Link copied to clipboard
public final ProfiledPIDController getProfiledPIDController()
Link copied to clipboard
public final Double getS()

The static gain.

Link copied to clipboard
public final Double getV()

The velocity gain.

Link copied to clipboard
public final Unit setD(Double d)

The derivative gain.

public final Unit setD(LoggedNetworkNumber d)

Sets the derivative gain (d) from a LoggedNetworkNumber.

Link copied to clipboard
public final Unit setG(Double g)

The gravity gain.

public final Unit setG(LoggedNetworkNumber g)

Sets the gravity gain (g) from a LoggedNetworkNumber.

Link copied to clipboard
public final Unit setI(Double i)

The integral gain.

public final Unit setI(LoggedNetworkNumber i)

Sets the integral gain (i) from a LoggedNetworkNumber.

Link copied to clipboard
public final Unit setP(Double p)

The proportional gain.

public final Unit setP(LoggedNetworkNumber p)

Sets the proportional gain (p) from a LoggedNetworkNumber.

Link copied to clipboard
public final Unit setPID(PIDController pidController)

Sets the PID values from the given PIDController instance.

Link copied to clipboard
public final Unit setS(Double s)

The static gain.

public final Unit setS(LoggedNetworkNumber s)

Sets the static gain (s) from a LoggedNetworkNumber.

Link copied to clipboard
public final Unit setV(Double v)

The velocity gain.

public final Unit setV(LoggedNetworkNumber v)

Sets the velocity gain (v) from a LoggedNetworkNumber.