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.

Kit projectIntermediate90 to 120 minutes

Mini Delivery Vehicle

A two-motor cardboard chassis that follows a black line. QA treated this as a kit-matched build: same parts pool as the delivery vehicle listing.

Prompt

A mini delivery vehicle that follows a black line on white paper and stops when it reaches a mark. Two DC motors, two IR sensors, Arduino Uno, cardboard chassis. Cutouts, wiring, and code.

Generated wiring

UNO Motor driver Left sensor A0 Right sensor A1

Generated code

Firmware

// Sample copilot output: line follower
const int L = A0;
const int R = A1;

void setup() {
  pinMode(5, OUTPUT);
  pinMode(6, OUTPUT);
}

void loop() {
  bool left = analogRead(L) < 500;
  bool right = analogRead(R) < 500;
  analogWrite(5, left ? 0 : 160);
  analogWrite(6, right ? 0 : 160);
}

QA photos

Mini Delivery Vehicle QA photo

Parts

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