Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbed-os-example-mbed5-blinky by
Diff: pid.h
- Revision:
- 42:b69538bba4f9
- Parent:
- 40:19d51f6e6800
--- a/pid.h Tue Jul 04 16:36:18 2017 +0000 +++ b/pid.h Wed Jul 05 21:05:56 2017 +0000 @@ -68,11 +68,11 @@ //I term integrator += errorValue; - double I = (Ki/60.0) * integrator; + double I = (Ki/6000.0) * integrator; if(I > maxInteg || I < minInteg) - led2 = 1; - else led2 = 0; + led2.write(1); + else led2.write(0); I = I>maxInteg? maxInteg : I; I = I<minInteg? minInteg : I;