Status Funcions************************************************************* * Just because you set the Kp=-1 doesn't mean it actually happened. these * functions query the internal state of the PID. they're here for display * purposes. this are the functions the PID Front-end uses for example ******************************************************************************/
| 217 | * purposes. this are the functions the PID Front-end uses for example |
| 218 | ******************************************************************************/ |
| 219 | double PID::GetKp(){ return dispKp; } |
| 220 | double PID::GetKi(){ return dispKi;} |
| 221 | double PID::GetKd(){ return dispKd;} |
| 222 | int PID::GetMode(){ return inAuto ? AUTOMATIC : MANUAL;} |
nothing calls this directly
no outgoing calls
no test coverage detected