br3ttb / Arduino-PID-Library

1.93k stars 1.11k forks source link

Is dynamic reconfiguration of the setpoint value supported? #115

Closed fkromer closed 3 years ago

fkromer commented 3 years ago

According to the Improving the Beginner’s PID: Tuning Changes guide the implementation should support the dynamic reconfiguration of PID tuning parameters (Kp, Ki, Kd).

Does the implementation support the dynamic reconfiguration of the setpoint value?

br3ttb commented 3 years ago

yes. The pid is linked directly to the &setpoint when it is constructed. if you change the setpoint value, the pid will know and respond.

On Tue, Oct 5, 2021 at 8:43 AM Florian Kromer @.***> wrote:

According to the Improving the Beginner’s PID: Tuning Changes http://brettbeauregard.com/blog/2011/04/improving-the-beginner%e2%80%99s-pid-tuning-changes/ guide the implementation should support the dynamic reconfiguration of PID tuning parameters (Kp, Ki, Kd).

Does the implementation support the dynamic reconfiguration of the setpoint value?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/br3ttb/Arduino-PID-Library/issues/115, or unsubscribe https://github.com/notifications/unsubscribe-auth/AACYX4UFJ4VTVD2J4AQZDNLUFLXFDANCNFSM5FLWKILA . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

-- Brett

fkromer commented 3 years ago

Thanks @br3ttb.