int gueaming=7;
int sibro=2;
int yeahmybro=9;
void setup() {
pinMode(gueaming, OUTPUT);
digitalWrite(gueaming, LOW);
// put your setup code here, to run once:
pinMode(sibro, OUTPUT);
digitalWrite(sibro, LOW);
// put your setup code here, to run once:
pinMode(yeahmybro, OUTPUT);
digitalWrite(yeahmybro, LOW);
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(gueaming, HIGH);
delay(1000);
digitalWrite(gueaming, LOW);
delay(1000);
// put your main code here, to run repeatedly:
digitalWrite(sibro, HIGH);
delay(1000);
digitalWrite(sibro, LOW);
delay(1000);
// put your main code here, to run repeatedly:
digitalWrite(yeahmybro, HIGH);
delay(1000);
digitalWrite(yeahmybro, LOW);
delay(1000);
}