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

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.

