├── .gitignore ├── PID.c ├── PID.h ├── README.md └── main.c /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | -------------------------------------------------------------------------------- /PID.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHongxi2001/PID_Library/HEAD/PID.c -------------------------------------------------------------------------------- /PID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHongxi2001/PID_Library/HEAD/PID.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHongxi2001/PID_Library/HEAD/README.md -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangHongxi2001/PID_Library/HEAD/main.c --------------------------------------------------------------------------------