v1.2.4
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