├── .github └── workflows │ ├── DoxyFile │ ├── Doxygen.yml │ └── publish to ESPIDF component registry.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── examples ├── AllFunctions │ └── AllFunctions.ino ├── KnobExample │ └── KnobExample.ino ├── Multi │ └── Multi.ino ├── SmoothServo │ └── SmoothServo.ino └── TimedMove │ └── TimedMove.ino ├── idf_component.yml ├── library.properties └── src └── Derivs_Limiter.h /.github/workflows/DoxyFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-8/Derivs_Limiter/HEAD/.github/workflows/DoxyFile -------------------------------------------------------------------------------- /.github/workflows/Doxygen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-8/Derivs_Limiter/HEAD/.github/workflows/Doxygen.yml -------------------------------------------------------------------------------- /.github/workflows/publish to ESPIDF component registry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-8/Derivs_Limiter/HEAD/.github/workflows/publish to ESPIDF component registry.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-8/Derivs_Limiter/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-8/Derivs_Limiter/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-8/Derivs_Limiter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-8/Derivs_Limiter/HEAD/README.md -------------------------------------------------------------------------------- /examples/AllFunctions/AllFunctions.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-8/Derivs_Limiter/HEAD/examples/AllFunctions/AllFunctions.ino -------------------------------------------------------------------------------- /examples/KnobExample/KnobExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-8/Derivs_Limiter/HEAD/examples/KnobExample/KnobExample.ino -------------------------------------------------------------------------------- /examples/Multi/Multi.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-8/Derivs_Limiter/HEAD/examples/Multi/Multi.ino -------------------------------------------------------------------------------- /examples/SmoothServo/SmoothServo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-8/Derivs_Limiter/HEAD/examples/SmoothServo/SmoothServo.ino -------------------------------------------------------------------------------- /examples/TimedMove/TimedMove.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-8/Derivs_Limiter/HEAD/examples/TimedMove/TimedMove.ino -------------------------------------------------------------------------------- /idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-8/Derivs_Limiter/HEAD/idf_component.yml -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-8/Derivs_Limiter/HEAD/library.properties -------------------------------------------------------------------------------- /src/Derivs_Limiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshua-8/Derivs_Limiter/HEAD/src/Derivs_Limiter.h --------------------------------------------------------------------------------