Fast Fourier Transform for Arduino
 
 
 
Go to file
Enrique Condes 46d88377a6 - Fix minor bug 2014-10-09 18:08:55 -05:00
Examples - Define Theta (2*Pi) constant. 2014-07-20 00:09:27 -05:00
.gitignore - Change class name from PlainFFT to arduinoFFT. 2014-07-19 22:42:36 -05:00
LICENSE Initial commit 2014-07-19 19:55:27 -05:00
README.md Formatear Readme.md 2014-07-30 09:41:55 -05:00
arduinoFFT.cpp - Change class name from PlainFFT to arduinoFFT. 2014-07-19 22:42:36 -05:00
arduinoFFT.h - Fix minor bug 2014-10-09 18:08:55 -05:00
keywords.txt Original code 2014-07-19 20:08:55 -05: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.

Tested on Arduino 1.0.5

Installation

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

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>