int yellow, blue, green;
int yellowBut, blueBut, greenBut;
int count;
void setup() {
pinMode(13, OUTPUT);
yellow = 8;
blue = 9;
green = 10;
pinMode(yellow, OUTPUT);
pinMode(blue, OUTPUT);
pinMode(yellow, OUTPUT);
yellowBut = 0;
blueBut = 1;
greenBut = 2;
pinMode(yellowBut, INPUT_PULLUP);
pinMode(blueBut, INPUT_PULLUP);
pinMode(greenBut, INPUT_PULLUP);
count = 1;
}
void loop() {
// put your main code here, to run repeatedly:
// int list[count];
// for (int i = 0; i < count; i++){
// list[i] = random(8, 11);
// digitalWrite(list[i], HIGH);
// delay(1000);
// }
// for (int i = 0; i < count; i++){
// if (digitalRead(list[i] + 8) == LOW){
// break;
// }
// }
digitalWrite(8, HIGH);
}