Students will
- Identify connected breadboard holes and the center gap
- Trace a complete path from an output pin to GND
- Find a misplaced component by comparing nodes rather than appearances
Arduino Uno R3
Map the hidden connections inside a breadboard, assemble a protected LED circuit, and trace every electrical node before applying power.
Reviewed connection map
Read before uploading
const int LED_PIN = 9;
void setup() {
pinMode(LED_PIN, OUTPUT);
}
void loop() {
digitalWrite(LED_PIN, HIGH);
delay(500);
digitalWrite(LED_PIN, LOW);
delay(500);
}Optional engineering record
Choose the prompts that help students explain predictions, evidence, debugging, and transfer. Saving creates a new entry in this browser’s Rudi notebook.
Use these prompts if they help students capture evidence, decisions, or questions. You do not need to complete every prompt or create an entry at every step.
Disconnect power and compare the actual connected rows, LED polarity, resistor placement, D9, and GND one node at a time.
Check whether that rail is split and bridge the sections only after confirming polarity.
2026 middle school standards
These are evidence-based crosswalk candidates for curriculum review—not a claim of official alignment.
Students isolate variables, compare observed behavior with the intended purpose, and document a revision.
Lesson evidence: Annotated node trace and fault diagnosisboard-tour · ohms-law · power-and-signals
Starting point, not verified curriculum. Review the actual hardware, circuit, code, power requirements, and classroom conditions.
After teaching this lesson