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 demoBeginner40 minutes

Cardboard Desk Fan

A paper impeller on a motor, with a button start. Beginner moving-air build used to check motor-driver prompts.

Prompt

A small cardboard desk fan. One DC motor spins a paper blade. A button on D2 starts and stops it. Arduino Uno. Cutouts, wiring, and code.

Generated wiring

UNO Button D2 Motor D9

Generated code

Firmware

// QA log: fan
bool on = false;

void setup() {
  pinMode(2, INPUT_PULLUP);
  pinMode(9, OUTPUT);
}

void loop() {
  if (digitalRead(2) == LOW) {
    on = !on;
    delay(250);
  }
  analogWrite(9, on ? 180 : 0);
}

QA photos

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

Parts

  • Arduino
  • motors
  • 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.