Skip to content

Instantly share code, notes, and snippets.

View mosdragon's full-sized avatar

Muhammad Osama Sakhi mosdragon

View GitHub Profile
@mosdragon
mosdragon / fur_elise.ino
Last active August 29, 2015 13:55 — forked from spara/fur_elise.ino
Added RGB color coordination on pins 2,3, and 4, respectively. The lights glow at different intervals, creating combinations of all primary colors to enhance the music experience.
int r = 2;
int g = 3;
int b = 4;
void setup() {
pinMode(10, OUTPUT);
pinMode(r, OUTPUT);
pinMode(g, OUTPUT);
pinMode(b, OUTPUT);