Skip to content

v1.2.4

Compare
Choose a tag to compare
@drf5n drf5n released this 13 Mar 03:41
· 10 commits to PID_v1_bc since this release

v1.2.4 exposes the outputSum integral to userspace and adds a PID_heater_simulation example.

PID::outputSum is the internal variable that accumulates/integrates the error:
outputSum+= (ki * error);

Exposing this variable enables user-space oversight of the PID system per upstream PR br3ttb#133