Skip to content

Instantly share code, notes, and snippets.

/*
Arduino - Processing Real Time Spectrum Analyzer
This program is intended to do a FFT on incoming audio signal for a line-in input on PC
The program is based on http://processing.org/learning/libraries/forwardfft.html
The FFT results are sent to two arduinos via a string of 32 integers
More information, including full parts list and videos of the final product can be seen on 12vtronix.com
Youtube video sample: https://www.youtube.com/watch?v=X35HbE7k3DA
Created: 22nd Sep 2013 by Stephen Singh
@snskreationz
snskreationz / WS2811 Spectrum analuzer - arduino code
Created December 15, 2013 02:35
Arduino - Processing WS2811 Spectrum Analyzer. This controls 100 WS2811 RGB LEDs for a "waterfall" spectrum analyzer. A potentiometer is used on A0 to control the sensitivity. More information, including full parts list and pictures of the final product can be seen or requested at www.12vtronix.com. Based on adafruit neopixel library Created: 4…
/*
Arduino - Processing WS2811 Spectrum Analyzer.
This controls 100 WS2811 RGB LEDs for a "waterfall" spectrum analyzer.
A potentiometer is used on A0 to control the sensitivity.
More information, including full parts list and pictures of the final product can be seen or requested at www.12vtronix.com.
Based on adafruit neopixel library
Created: 4th Dec 2013 by Stephen Singh.
Last Modified: 14th Dec 2013 by Stephen Singh.
@snskreationz
snskreationz / WS2811 Spectrum analyzer processing code
Last active December 31, 2015 09:39
/* Arduino - Processing WS2811 Spectrum Analyzer. This program does an FFT for 20 - 60hz then sends the result to an arduino. The signal being processed would be an input signal to the computer though the line in audio port. More information, including full parts list and pictures of the final product can be seen or requested at www.12vtronix.com.…
/*
Arduino - Processing WS2811 Spectrum Analyzer.
This program does an FFT for 20 - 60hz then sends the result to an arduino.
The signal being processed would be an input signal to the computer though the line in audio port.
More information, including full parts list and pictures of the final product can be seen or requested at www.12vtronix.com.
This program is part of the code used to drive the 16 x 64 RGB spectrum analyzer also found on www.12vtronix.com.
Based on http://processing.org/learning/libraries/forwardfft.html by ddf.
Created: 12th Dec 2013 by Stephen Singh.
Last Modified: 14th Dec 2013 by Stephen Singh.