This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Arduino Music Lights v1 | |
//by paplaukias | |
// | |
//uses the FFT library which can be found on http://arduino.cc/forum/index.php/topic,38153.0.html | |
// | |
//[email protected] | |
//http://www.paplaukias.co.uk | |
#include <fix_fft.h> | |
//set AnalogPin for audio input |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Arduino Music Lights v1 | |
//by paplaukias | |
// | |
//uses the FFT library which can be found on http://arduino.cc/forum/index.php/topic,38153.0.html | |
// | |
//[email protected] | |
//http://www.paplaukias.co.uk | |
#include <fix_fft.h> | |
//set AnalogPin for audio input |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Mood Lamp | |
float RGB1[3]; | |
float RGB2[3]; | |
float INC[3]; | |
int red, green, blue; | |
const int redPin = 11; //eyes red | |
const int greenPin = 10; //eyes green |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Mood Lamp | |
float RGB1[3]; | |
float RGB2[3]; | |
float INC[3]; | |
int red, green, blue; | |
const int redPin = 11; //eyes red | |
const int greenPin = 10; //eyes green |