Skip to content

Releases: Dlloydev/QuickPID

QuickPID 3.1.9

10 Jun 19:43
Compare
Choose a tag to compare

Adds the SetOutputSum(sum); function.

QuickPID 3.1.8

05 May 22:07
Compare
Choose a tag to compare

Add Reset() function to clears pTerm, iTerm, dTerm and outputSum values.

QuickPID 3.1.7

10 Apr 14:22
Compare
Choose a tag to compare

Merges #70 for compatibility with esp-idf tool.
(thanks @trilokeshtarala)

QuickPID 3.1.6

25 Mar 14:27
Compare
Choose a tag to compare

Resolves #68

QuickPID 3.1.5

23 Mar 02:49
Compare
Choose a tag to compare

Resolves #65, #66 and #67
Thanks @drf5n

Also adds a new "toggle" controller mode that toggles between manual and automatic mode.

QuickPID 3.1.4

06 Jan 23:45
Compare
Choose a tag to compare
  • Added default constructor

QuickPID 3.1.3

06 Jan 23:22
Compare
Choose a tag to compare
  • Added default constructor

QuickPID 3.1.2

03 Apr 15:24
Compare
Choose a tag to compare

Updated SetTunings to clear outputSum variable if Ki parameter = 0.
Suggested by @brN2k, issue #48.

QuickPID 3.1.1

21 Jan 19:47
Compare
Choose a tag to compare
  • Fix bug in overload constructor Thank you @guilhermgonzaga
  • Updated PID_RelayOutput.ino example where now the PID compute rate controls the rate of updating the digital output (thanks to suggestion by @SinisterRj). Other features include debouncing all transitions, full window range control and only one call to digitalWrite() per transition. Use with controlling mechanical relays, SSRs, MOSFETs or other devices.

QuickPID 3.1.0

05 Jan 14:55
Compare
Choose a tag to compare
  • Since ESP32 Arduino 2.0.1 or newer has analogWrite basic support based on LEDC, the included library ESP32-ESP32S2-AnalogWrite has been removed from QuickPID. Please Install SP32-ESP32S2-AnalogWrite separately if you require its advanced pin management or other unique features.

  • Uses dispKp = 0, dispKi = 0 and dispKd = 0 for both display purposes and defaults. Removed defKp, defKi and defKd.

  • Autotune_QuickPID.ino example is now at the sTune repository.