├── .gitattributes ├── .github └── workflows │ └── tg-send.yml ├── LICENSE ├── README.md ├── README_EN.md ├── examples ├── GFilterRA │ └── GFilterRA.ino ├── GLinear_arrays │ ├── GLinear_arrays.ino │ └── excel.jpg ├── GLinear_running │ └── GLinear_running.ino ├── RingAverage │ └── RingAverage.ino ├── alphabeta_example │ └── alphabeta_example.ino ├── fastFilter │ └── fastFilter.ino ├── filters_comparsion │ └── filters_comparsion.ino ├── kalman_example │ └── kalman_example.ino ├── median3_example │ └── median3_example.ino └── median_example │ └── median_example.ino ├── keywords.txt ├── library.properties └── src ├── GyverFilters.h └── filters ├── FastFilter.h ├── RingAverage.h ├── alfaBeta.h ├── kalman.h ├── linear.h ├── median.h ├── median3.h └── runningAverage.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverFilters/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/tg-send.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverFilters/HEAD/.github/workflows/tg-send.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverFilters/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverFilters/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverFilters/HEAD/README_EN.md -------------------------------------------------------------------------------- /examples/GFilterRA/GFilterRA.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverFilters/HEAD/examples/GFilterRA/GFilterRA.ino -------------------------------------------------------------------------------- /examples/GLinear_arrays/GLinear_arrays.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverFilters/HEAD/examples/GLinear_arrays/GLinear_arrays.ino -------------------------------------------------------------------------------- /examples/GLinear_arrays/excel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverFilters/HEAD/examples/GLinear_arrays/excel.jpg -------------------------------------------------------------------------------- /examples/GLinear_running/GLinear_running.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverFilters/HEAD/examples/GLinear_running/GLinear_running.ino -------------------------------------------------------------------------------- /examples/RingAverage/RingAverage.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverFilters/HEAD/examples/RingAverage/RingAverage.ino -------------------------------------------------------------------------------- /examples/alphabeta_example/alphabeta_example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverFilters/HEAD/examples/alphabeta_example/alphabeta_example.ino -------------------------------------------------------------------------------- /examples/fastFilter/fastFilter.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverFilters/HEAD/examples/fastFilter/fastFilter.ino -------------------------------------------------------------------------------- /examples/filters_comparsion/filters_comparsion.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverFilters/HEAD/examples/filters_comparsion/filters_comparsion.ino -------------------------------------------------------------------------------- /examples/kalman_example/kalman_example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverFilters/HEAD/examples/kalman_example/kalman_example.ino -------------------------------------------------------------------------------- /examples/median3_example/median3_example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverFilters/HEAD/examples/median3_example/median3_example.ino -------------------------------------------------------------------------------- /examples/median_example/median_example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverFilters/HEAD/examples/median_example/median_example.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverFilters/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverFilters/HEAD/library.properties -------------------------------------------------------------------------------- /src/GyverFilters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverFilters/HEAD/src/GyverFilters.h -------------------------------------------------------------------------------- /src/filters/FastFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverFilters/HEAD/src/filters/FastFilter.h -------------------------------------------------------------------------------- /src/filters/RingAverage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverFilters/HEAD/src/filters/RingAverage.h -------------------------------------------------------------------------------- /src/filters/alfaBeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverFilters/HEAD/src/filters/alfaBeta.h -------------------------------------------------------------------------------- /src/filters/kalman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverFilters/HEAD/src/filters/kalman.h -------------------------------------------------------------------------------- /src/filters/linear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverFilters/HEAD/src/filters/linear.h -------------------------------------------------------------------------------- /src/filters/median.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverFilters/HEAD/src/filters/median.h -------------------------------------------------------------------------------- /src/filters/median3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverFilters/HEAD/src/filters/median3.h -------------------------------------------------------------------------------- /src/filters/runningAverage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverFilters/HEAD/src/filters/runningAverage.h --------------------------------------------------------------------------------