├── .clang-format ├── .gitignore ├── LICENSE ├── Makefile ├── PID_v2.cpp ├── PID_v2.h ├── README.md ├── examples ├── PID_AdaptiveTunings │ └── PID_AdaptiveTunings.ino ├── PID_Basic │ └── PID_Basic.ino ├── PID_PonM │ └── PID_PonM.ino └── PID_RelayOutput │ └── PID_RelayOutput.ino ├── keywords.txt ├── library.json └── library.properties /.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | BasedOnStyle: Google 3 | IndentPPDirectives: BeforeHash 4 | ... 5 | 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imax9000/Arduino-PID-Library/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imax9000/Arduino-PID-Library/HEAD/Makefile -------------------------------------------------------------------------------- /PID_v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imax9000/Arduino-PID-Library/HEAD/PID_v2.cpp -------------------------------------------------------------------------------- /PID_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imax9000/Arduino-PID-Library/HEAD/PID_v2.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imax9000/Arduino-PID-Library/HEAD/README.md -------------------------------------------------------------------------------- /examples/PID_AdaptiveTunings/PID_AdaptiveTunings.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imax9000/Arduino-PID-Library/HEAD/examples/PID_AdaptiveTunings/PID_AdaptiveTunings.ino -------------------------------------------------------------------------------- /examples/PID_Basic/PID_Basic.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imax9000/Arduino-PID-Library/HEAD/examples/PID_Basic/PID_Basic.ino -------------------------------------------------------------------------------- /examples/PID_PonM/PID_PonM.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imax9000/Arduino-PID-Library/HEAD/examples/PID_PonM/PID_PonM.ino -------------------------------------------------------------------------------- /examples/PID_RelayOutput/PID_RelayOutput.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imax9000/Arduino-PID-Library/HEAD/examples/PID_RelayOutput/PID_RelayOutput.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imax9000/Arduino-PID-Library/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imax9000/Arduino-PID-Library/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imax9000/Arduino-PID-Library/HEAD/library.properties --------------------------------------------------------------------------------