Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

esp32 adaptive tuning #140

Open
tomislav12 opened this issue Oct 19, 2023 · 1 comment
Open

esp32 adaptive tuning #140

tomislav12 opened this issue Oct 19, 2023 · 1 comment

Comments

@tomislav12
Copy link

double Setpoint, Input, Output;
PID myPID(&Input, &Output, &Setpoint, 0, 0, 0, DIRECT);

setup() {
Input = 10;
Setpoint = 10;
double Kp = 10; // CHANGED
double Ki = 0;
double Kd = 0;
myPID.SetOutputLimits(-200, 200);
myPID.SetSampleTime(16);
myPID.SetMode(AUTOMATIC);
myPID.SetTunings(Kp, Ki, Kd);
}
loop() {
// below is simplified, in real code it is in some function call):
Input = 5; // (simplified change)
myPID.Compute();
SerialBT.println(Output); // only takes initial params into consideration (0,0,0) ! Why is that?
}

Second question, I need to have params 20,0,-10, can Kd be below zero?

@tomislav12
Copy link
Author

tomislav12 commented Oct 28, 2023

Another question, I found this inside the library code:

"SetOutputLimits(...)
This function will be used far more often than SetInputLimits.  while
 the input to the controller will generally be in the 0-1023 range (which is
 the default already,) ...."

Is input really needed to be 0-1023 or can it be eg 0-12?
Anyway, I cannot find the function SetInputLimits or the default(1023) mentioned in the code of this library...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant