Resources for final exam

 

Arduino incomplete code: See handout for details.  You will copy/paste this code into a . new using the Arduino program (not Tinkercad) and fix errors and add missing code as needed.  Print out your completed code when done.

int blue = 13;

void setup() {
pinMode(blue, OUTPUT);
pinmode(yellow, OUTPUT);
}

void loop() {
digitalrite(yellow, HIGH);
delay(1000);
digitalWrite(yellow, LOW);
}