arduinoFFT/README.md

37 wiersze
1.6 KiB
Markdown
Czysty Zwykły widok Historia

2014-07-20 00:55:27 +00:00
arduinoFFT
==========
Fast Fourier Transform for Arduino
2014-07-20 01:01:14 +00:00
This is a fork from https://code.google.com/p/makefurt/ which has been abandoned since 2011.
2014-07-20 01:08:55 +00:00
This is a C++ library for Arduino for computing FFT.
Tested on Arduino 0022 Alpha.
Installation
--------------------------------------------------------------------------------
To install this library, just place this entire folder as a subfolder in your
When installed, this library should look like:
Arduino\libraries\PlainFTT (this library's folder)
Arduino\libraries\PlainFTT\PlainFTT.cpp (the library implementation file, uses 32 bits floats vectors)
Arduino\libraries\PlainFTT\PlainFTT.h (the library description file, uses 32 bits floats vectors)
Arduino\libraries\PlainFTT\PlainFTT_INT.cpp (the library implementation file, experimental signed 16 bits vectors)
Arduino\libraries\PlainFTT\PlainFTT_INT.h (the library description file, experimental signed 16 bits vectors)
Arduino\libraries\PlainFTT\keywords.txt (the syntax coloring file)
Arduino\libraries\PlainFTT\examples (the examples in the "open" menu)
Arduino\libraries\PlainFTT\readme.txt (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 PlainFTT. This will add a corresponding line to the top of your sketch:
#include <PlainFTT.h> (or #include <PlainFTT_INT.h>