arduino / Arduino

Arduino IDE 1.x
https://www.arduino.cc/en/software
Other
14.16k stars 7.02k forks source link

Real-Time Digital Filters Library #10674

Closed hoilett closed 4 years ago

hoilett commented 4 years ago

Hi,

The library is located here: https://github.com/LinnesLab/KickFiltersRT

Library for implementing real-time digital filters such as lowpass, highpass, and notch. Improves on other libraries by including a notch filter (also known as a bandstop filter), using a templated class to allow for ease of use with multiple numeric types, runs synchronously with the program (in real-time) without needing to store a large amount of data in an array before the signal can be filtered. Also uses familiar terminology such as cutoff frequency which makes it easy to translate from analog filters.

cmaglie commented 4 years ago

Done.