Resources/Build gallery

Gallery

Build gallery

Team QA packages from the copilot test loop. Click a build to open the prompt, generated wiring, and QA photos. These are sample tool outputs, not classroom case studies. Physical kits are not for sale yet.

Click a build to see the prompt, wiring, and QA photos.

Flagship demoBeginner30 to 45 minutes

Cardboard Traffic Light

Three LEDs in a cardboard housing on a timed sequence. Used in QA as the shortest path from prompt to a working circuit.

Prompt

A cardboard traffic light with red, yellow, and green LEDs. Timed sequence like a real junction. Arduino Uno. Cutouts, wiring, and code.

Generated wiring

UNO Red D8 Yellow D9 Green D10

Generated code

Firmware

// QA log: traffic light
const int RED = 8;
const int YEL = 9;
const int GRN = 10;

void setup() {
  pinMode(RED, OUTPUT);
  pinMode(YEL, OUTPUT);
  pinMode(GRN, OUTPUT);
}

void loop() {
  digitalWrite(RED, HIGH);
  delay(4000);
  digitalWrite(RED, LOW);
  digitalWrite(YEL, HIGH);
  delay(1000);
  digitalWrite(YEL, LOW);
  digitalWrite(GRN, HIGH);
  delay(4000);
  digitalWrite(GRN, LOW);
}

QA photos

No phone photo in the QA log yet for this build. Wiring and code above are the generated package.

Parts

  • Arduino
  • LEDs
  • cardboard

Difficulty and time are from the QA log for this prompt, not a timed class period.

If this build gets stuck

Try this prompt opens the copilot with the text filled in. It does not run a generation until you send it.