Robotics/electronics

Servo-Powered Claw

Drive a two-jaw linkage with a low-voltage servo and calibrate grip angles for soft classroom objects.

A servo rotates, but a claw needs matched jaw motion. A connecting link converts horn angle into opening width while soft pads spread force across the object.

Difficulty
Intermediate
Build time
90-140 min
Estimated cost
$0-$24
Age range
12-17
Workspace
A clear table about 90 cm wide

The finish line

What you will build

The claw grips and releases five different 10-30 gram foam or paper objects without stalling or crushing them.

Learning goals

  • Identify how button or potentiometer command produces symmetric jaw opening and closing.
  • Construct and explain a servo rotation-to-opposed jaw rotation system.
  • Measure how closed servo angle changes performance.
  • Diagnose losses caused by linkage backlash and jaw flex.

Before you build

Materials, tools, and safety

Reuse-material cost: Usually under $5 with an existing kit. Supervision: Adult guidance recommended for wiring and cutting.

Tools

  • Small screwdriver
  • Wire stripper
  • Multimeter
  • Low-temperature glue gun or tape

Low-cost swaps

  • Use alligator-clip leads for a no-solder version.
  • Build and test the mechanism manually before adding electronics.
  • Operate the same claw with a hand lever and string before adding the servo.

Wiring table

FromToPurpose
Regulated 5 VServo red wireSupply rated servo current
Supply GNDServo ground and controller GNDCreate common reference
Controller pin 9Servo signalCommand jaw position
ButtonsPins 2, 3 and GNDRequest open or closed state with pull-ups

Project-specific safety

  • Use only the listed low-voltage battery supply; never use mains electricity.
  • Disconnect power before changing wires and stop if a motor, wire, or battery becomes warm.
  • Use soft lightweight targets, keep fingers out of jaws, set angle limits before attachment, and disconnect power for adjustments.

Orient the build

Place the build so button or potentiometer command is on your left and symmetric jaw opening and closing is on your right. Call the side facing you the front, the far side the back, the tabletop the bottom, and the opposite face the top.

Build it

Step-by-step instructions

  1. Step 1

    Build the claw frame

    Laminate a base with two equal pivot positions.

    Mark center grip line.

  2. Step 2

    Make matched jaws

    Cut two mirror-image jaws and add broad padded tips.

    Drill or punch pivots with adult help.

  3. Step 3

    Install pivots

    Attach jaws with free-running gaps and hard open stops.

    Confirm equal manual swing.

    Builder checkpoint: After install pivots, the first subassembly should stay aligned when handled gently.

  4. Step 4

    Connect the jaws

    Use a tie link so one driven jaw mirrors the other.

    Adjust hole positions for symmetric closure.

    Watch for: If this stage binds or drifts, inspect pad compression before adding more parts.

  5. Step 5

    Mount the servo

    Fix its body rigidly and align the horn near the drive-jaw link.

    Keep load sideways forces off the shaft.

  6. Step 6

    Wire safe power

    Use regulated 5 V and common ground, then connect signal and buttons.

    Test servo unattached at 40 and 120 degrees.

    Builder checkpoint: After wire safe power, operate the build slowly and confirm that symmetric jaw opening and closing begins without binding.

  7. Step 7

    Calibrate limits

    Attach the linkage at midpoint and approach open and closed stops slowly.

    Record safe angles before gripping.

  8. Step 8

    Run object trials

    Grip, lift 5 cm, hold five seconds, and release each soft object.

    Stop on buzzing or stalled motion.

    Builder checkpoint: At the final checkpoint, The claw grips and releases five different 10-30 gram foam or paper objects without stalling or crushing them.

See the engineering

Why it works

Input
button or potentiometer command
Output
symmetric jaw opening and closing
Motion
servo rotation-to-opposed jaw rotation
Energy losses
linkage backlash, jaw flex, pivot friction, pad compression
Servo-Powered Claw concept diagram with labeled input, output, and motion arrows.
The servo rotation-to-opposed jaw rotation motion path, with the main efficiency losses called out.

Why this works

Servo-linkage actuation

The servo horn moves a link that rotates one jaw; a tie link or meshed sector makes the second jaw mirror it. Hard stops protect both mechanism and servo.

Look for: Measure jaw gap at five servo angles and note where the relationship becomes nonlinear.

Where the energy goes

Efficiency and losses

The ideal model leaves out linkage backlash, jaw flex, pivot friction, pad compression. These effects turn some input energy into heat, sound, vibration, or unwanted motion, so measured performance will be lower than an ideal calculation.

Look for: Run the build slowly and locate the first place where linkage backlash becomes visible or audible.

Math bite

Estimate jaw-tip travel

Formula: arc length = radius × angle in radians

  • Jaw radius = 0.08 m
  • Angle = 35° = 0.611 rad

Substitute: travel = 0.08 × 0.611 = 0.049 m

Result: Each jaw tip follows about a 4.9 cm arc.

The opening width changes by geometry of both jaws.

Links and pads alter the actual path.

servo_claw.ino

A complete two-button claw controller that moves gradually between calibrated safe angles.

#include <Servo.h>
Servo claw; const int openButton=2, closeButton=3;
int position=45; const int openAngle=45, closedAngle=112;
void setup(){ pinMode(openButton,INPUT_PULLUP); pinMode(closeButton,INPUT_PULLUP); claw.attach(9); claw.write(position); }
void loop(){
  int target=position;
  if(!digitalRead(openButton)) target=openAngle;
  if(!digitalRead(closeButton)) target=closedAngle;
  if(position<target) position++;
  if(position>target) position--;
  claw.write(position); delay(18);
}
Brick-building meme reading: Chuck Norris does not build LEGO; he roundhouses the bricks into sculptures.
The claw picked up the foam block and released it only after a brief contractual review.Image supplied by the site owner.

Make it behave

Test, troubleshoot, and tune

Controlled test

Start here: Cycle the claw empty through safe angles five times.

Success looks like: It grips and releases five lightweight objects without stall or damage.

Measure: Object success, jaw angle, gap, servo sound, and supply current.

Change: closed servo angle

Keep constant: claw, power, pads, object set, lift height, and hold time

  1. wide stop
  2. medium stop
  3. narrow safe stop
Troubleshooting guide
SymptomLikely causeConfirm itFix
Servo buzzes closedCommand pushes beyond a hard stopDisconnect power and move jaws manuallyReduce close angle
One jaw moves moreTie-link holes or pivots differMeasure gaps from centerMatch geometry and loosen pivots
Objects slipPads or jaw path provide little contactClose gently without liftingEnlarge compliant pads
Controller resetsServo current sags supplyWatch logic LED while closingUse rated servo supply with common ground

Choose your tradeoff

Use the widest closing angle that holds the object without stalling. More grip force can crush targets and shorten servo life; compliant pads often help more than extra torque.

Keep experimenting

Try another version

Easier

Hand-lever claw

Tune linkage before wiring.

Performance

Object variety

Grip round, flat, and irregular soft targets.

Advanced

Force limit

Use a current or force sensor to stop closing automatically.

Build together

Classroom and access options

Classroom version

Teams can compare closed servo angle while keeping claw, power, pads, object set, lift height, and hold time. Assign builder, tester, recorder, and explainer roles; have each team predict the result before collecting three trials.

Access adaptations

  • Color-code and label every wire at both ends.
  • Use clip leads, larger controls, and pre-crimped connectors when fine motor work is difficult.
  • Use two large open/close buttons and a wide object-loading tray.

Reflect on the design

  1. How did closed servo angle change the measured result?
  2. Where did linkage backlash affect the build most strongly?
  3. What evidence shows that servo-linkage actuation explains the motion?
  4. Which change would improve symmetric jaw opening and closing without creating a new problem?
Glossary
Servo-linkage actuation
The servo horn moves a link that rotates one jaw; a tie link or meshed sector makes the second jaw mirror it.
Input
The action or energy supplied to a system; here it is button or potentiometer command.
Output
The useful response produced by a system; here it is symmetric jaw opening and closing.
Efficiency
The fraction of input energy that becomes useful output instead of friction, sound, heat, or unwanted motion.

Build your dreams

One build can start the next.

Share what you learned, change one variable, and help another builder understand what worked.

Explore more guides

Sources and build notes

A platform-agnostic low-voltage robotics or electronics project with original assembly guidance.

  • Low-voltage design review: Battery voltage, polarity, component roles, current paths, and motor or LED protection were editorially checked.

Written and edited by BrickLabClips. Published 2026-07-22; updated 2026-07-22.

Next builds

Related guides