
The code below will simply switch between each colour. Note that 0 corresponds to LED off, and 255 corresponds to the maximum brightness for the PWM signal - something we will be including in the actual algorithm to control brightness with signal level and colour with each beat.
//Simple code toggles colour of LED at maximum brightness
const int redPin = 3;
const int greenPin = 5;
const int bluePin = 6;
int thisPin = redPin;
int other1 = greenPin;
int other2 = bluePin;
void setup() {
pinMode(redPin, OUTPUT);
pinMode(bluePin, OUTPUT);
pinMode(greenPin, OUTPUT);
}
void loop() {
analogWrite(thisPin,255); //maximum brightness
analogWrite(other1,0); //turn off
analogWrite(other2,0); //turn off
//switches colour every second
switch (thisPin) {
case redPin:
thisPin = bluePin;
other1 = redPin;
const int redPin = 3;
const int greenPin = 5;
const int bluePin = 6;
int thisPin = redPin;
int other1 = greenPin;
int other2 = bluePin;
void setup() {
pinMode(redPin, OUTPUT);
pinMode(bluePin, OUTPUT);
pinMode(greenPin, OUTPUT);
}
void loop() {
analogWrite(thisPin,255); //maximum brightness
analogWrite(other1,0); //turn off
analogWrite(other2,0); //turn off
//switches colour every second
switch (thisPin) {
case redPin:
thisPin = bluePin;
other1 = redPin;
other2 = greenPin;
break;
case bluePin:
thisPin = greenPin;
other1 = redPin;
other2 = bluePin;
break;
case greenPin:
thisPin = redPin;
other1 = greenPin;
other2 = bluePin;
}
delay(1000);
}
break;
case bluePin:
thisPin = greenPin;
other1 = redPin;
other2 = bluePin;
break;
case greenPin:
thisPin = redPin;
other1 = greenPin;
other2 = bluePin;
}
delay(1000);
}