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

Cardboard Drawbridge

A servo-lifted span over a cardboard canal. Flagship demo for a first moving structure: one servo, two positions, no sensors.

Prompt

Build a cardboard drawbridge. One micro servo raises and lowers the span on a 4 second loop. Arduino Uno. A4 cutouts, wiring, and code.

Generated wiring

UNO Span servo D9

Generated code

Firmware

// QA log: drawbridge
#include <Servo.h>
Servo span;

void setup() {
  span.attach(9);
}

void loop() {
  span.write(20);
  delay(2000);
  span.write(90);
  delay(2000);
}

QA photos

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

Parts

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