An open API service indexing awesome lists of open source software.

https://github.com/arkhipenko/dlpfilter

Adaptive Digital Low Pass filter (integer arithmetic only)
https://github.com/arkhipenko/dlpfilter

Last synced: 6 months ago
JSON representation

Adaptive Digital Low Pass filter (integer arithmetic only)

Awesome Lists containing this project

README

          

Digital implementation of the low-pass filter for Arduino

Digital implementation of the low-pass filter code is based on the following
article: ADAPTIVE IIR FILTER USING FIXED POINT INTEGER ARITHMETIC
by Hari Nair, published on March 23, 2013

Original text of the article is located here:
http://www.dsprelated.com/showcode/326.php

Changelog:
v1.0.0:
2015-02-24 - Initial release

v1.0.1:
2016-01-05 - Switched to arduino std constrain() and abs() methods

v1.0.2:
2020-09-14 - added initialize() method