├── LICENSE ├── README.md ├── examples └── test │ └── test.ino ├── library.properties └── src ├── FIR.cpp └── FIR.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebnil/FIR-filter-Arduino-Library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebnil/FIR-filter-Arduino-Library/HEAD/README.md -------------------------------------------------------------------------------- /examples/test/test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebnil/FIR-filter-Arduino-Library/HEAD/examples/test/test.ino -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebnil/FIR-filter-Arduino-Library/HEAD/library.properties -------------------------------------------------------------------------------- /src/FIR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebnil/FIR-filter-Arduino-Library/HEAD/src/FIR.cpp -------------------------------------------------------------------------------- /src/FIR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebnil/FIR-filter-Arduino-Library/HEAD/src/FIR.h --------------------------------------------------------------------------------