Fast Fourier Transform for Arduino
Go to file
Enrique Condes 363dae29f2 Remove redundant definition of costant 2017-04-25 14:22:34 -05:00
Examples Remove redundant definition of costant 2017-04-25 14:22:34 -05:00
.gitignore
LICENSE
README.md - Readme 2014-11-09 02:03:01 -06:00
arduinoFFT.cpp Define constants on the headers file 2017-04-25 13:01:06 -05:00
arduinoFFT.h Define constants on the headers file 2017-04-25 13:01:06 -05:00
defs.h - Added missing files for use on C and Cpp projects. 2014-11-09 02:19:57 -06:00
keywords.txt
types.h - Added missing files for use on C and Cpp projects. 2014-11-09 02:19:57 -06:00

README.md

arduinoFFT

Fast Fourier Transform for Arduino

This is a fork from https://code.google.com/p/makefurt/ which has been abandoned since 2011.

This is a C++ library for Arduino for computing FFT. Now it works both on Arduino and C projects.

Tested on Arduino 1.0.5

Installation on Arduino

To install this library, just place this entire folder as a subfolder in your Arduino installation

When installed, this library should look like:

Arduino\libraries\arduinoFTT (this library's folder) Arduino\libraries\arduinoFTT\arduinoFTT.cpp (the library implementation file, uses 32 bits floats vectors) Arduino\libraries\arduinoFTT\arduinoFTT.h (the library description file, uses 32 bits floats vectors) Arduino\libraries\arduinoFTT\keywords.txt (the syntax coloring file) Arduino\libraries\arduinoFTT\examples (the examples in the "open" menu) Arduino\libraries\arduinoFTT\readme.md (this file)

Building on Arduino

After this library is installed, you just have to start the Arduino application. You may see a few warning messages as it's built.

To use this library in a sketch, go to the Sketch | Import Library menu and select arduinoFTT. This will add a corresponding line to the top of your sketch:

#include <arduinoFTT.h>