Skip to content

QuickPID 2.3.2

Compare
Choose a tag to compare
@Dlloydev Dlloydev released this 24 May 01:43
· 60 commits to master since this release

Version 2.3.2

  • Removed fixed point calculations as the speed benefit was very minimal.
  • Prevent integral windup if output exceeds limits.
  • Added the following new functions that return the P, I and D terms of the calculation.
    float GetPeTerm();           // proportional on error component of output 
    float GetPmTerm();           // proportional on measurement component of output
    float GetIterm();            // integral component of output
    float GetDterm();            // derivative component of output