February 28, 2023

Inventor of Evil

void setup() {

// put your setup code here, to run once:

for (int i = 0; i< 14; i++) {

pinMode(i, OUTPUT);

}

}

void loop() {

// put your main code here, to run repeatedly:

for (int i = 0 ; i<4; i++) {

digitalWrite(i, HIGH);

}

for (int i=8; i<=9;i++) {

digitalWrite(i, HIGH);

}

delay(500);

}