//Notes for buzzer defined
int Red = 3;
int Yellow = 4;
int Green = 5;
int Blue = 6;
int Buzzer = 11;
int b1 = 8;
int b2 = 9;
int b3 = 10;
int b4 = 7;
// each input and output defined to corolating pin
void setup() {
// put your setup code here, to run once:
pinMode(Red, OUTPUT);
pinMode(Yellow, OUTPUT);
pinMode(Green, OUTPUT);
pinMode(Blue, OUTPUT);
pinMode(Buzzer, OUTPUT);
// states which pieces are outputs
pinMode(b1, INPUT_PULLUP);
pinMode(b2, INPUT_PULLUP);
pinMode(b3, INPUT_PULLUP);
pinMode(b4, INPUT_PULLUP);
// states which pieces are inputs
}
void loop() {
digitalWrite(Red,HIGH);
}