Skip to content
STEMania
← All classes

🕵️ 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? Troubleshooting

Lesson 1 — Light Up LED

Light Up LED — Schematic
Light Up LED — Schematic
Light Up LED — Breadboard
Light Up LED — Breadboard
Light Up LED — Photo
Light Up LED — Photo

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);
}