🕵️ SpyGames
Your mission, Agent, is to check the wiring for each lesson, and replicate in real life. Grab the code, upload it.
🔧 Something not working? TroubleshootingLesson 1 — Light Up LED



Light Up LED
Arduino
// Light Up LED
// ACT 1: INITIAL LIGHT UP CODE:
void setup(){
//setup here
pinMode(2, OUTPUT);
}
void loop(){
digitalWrite(2, HIGH);
}