This commit is contained in:
rusefillc 2022-11-27 00:08:34 -05:00
parent d6da1f7e80
commit 8375e9e159
1 changed files with 4 additions and 1 deletions

View File

@ -19,7 +19,10 @@ public:
void reset();
private:
// more or less threshold parameter
float m_ignoreError = 0;
float m_errorIntegral = 0;
// time parameter
float m_dt = 0;
// current state
float m_errorIntegral = 0;
};