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

Tabletop Servo Claw

A single-servo gripper on a cardboard stand. Related to the arm kit but a smaller QA slice: open and close only.

Prompt

A cardboard claw that opens and closes with one micro servo. Mount it on a stand. Arduino Uno. Cutouts, wiring, and code.

Generated wiring

UNO Claw servo D9

Generated code

Firmware

// QA log: servo claw
#include <Servo.h>
Servo claw;

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

void loop() {
  claw.write(30);
  delay(800);
  claw.write(90);
  delay(800);
}

QA photos

Tabletop Servo Claw QA photo

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.