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 demoAdvanced2 hours

Cardboard Weather Station

Temperature and light on a cardboard stand, printed to serial. Advanced for this gallery because it needs a sensor module and a stable stand.

Prompt

A cardboard weather station. Read a temperature sensor and a light sensor, print both to serial every 2 seconds. Arduino Uno. Cutouts, wiring, and code.

Generated wiring

UNO Temp A0 Light A1

Generated code

Firmware

// QA log: weather station
void setup() {
  Serial.begin(9600);
}

void loop() {
  int temp = analogRead(A0);
  int light = analogRead(A1);
  Serial.print("temp=");
  Serial.print(temp);
  Serial.print(" light=");
  Serial.println(light);
  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
  • 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.