#include <pid.hpp>
|
float | ki () const |
|
| PID (float kp, float kd, float ki, float minOutput, float maxOutput, float integratorMin, float integratorMax, const std::string &name) |
|
void | reset () |
|
void | setIntegral (float integral) |
|
float | update (float value, float targetValue) |
|
Definition at line 5 of file pid.hpp.
PID::PID |
( |
float |
kp, |
|
|
float |
kd, |
|
|
float |
ki, |
|
|
float |
minOutput, |
|
|
float |
maxOutput, |
|
|
float |
integratorMin, |
|
|
float |
integratorMax, |
|
|
const std::string & |
name |
|
) |
| |
|
inline |
void PID::setIntegral |
( |
float |
integral | ) |
|
|
inline |
float PID::update |
( |
float |
value, |
|
|
float |
targetValue |
|
) |
| |
|
inline |
float PID::m_integratorMax |
|
private |
float PID::m_integratorMin |
|
private |
float PID::m_previousError |
|
private |
The documentation for this class was generated from the following file: