// No magic numbers!!!!
const int RED = 13;
const int GREEN = 12;
const int BLUE = 11;
void setup() {
// put your setup code here, to run once:
pinMode(RED, OUTPUT);
pinMode(GREEN, OUTPUT);
pinMode(BLUE, OUTPUT);
digitalWrite(RED, LOW);
digitalWrite(GREEN, LOW);
digitalWrite(BLUE, LOW);
}
void loop() {
// put your main code here, to run repeatedly:
}