🔁 Hardware · Mechanisms · PTOs & Motor Sharing

PTOs &
Motor Sharing

A power take-off lets you shift motor power between systems — driving when you need to drive, lifting when you need to lift. The extra complexity is only worth it when the math works out.

1
What Is a PTO
2
When to Use
3
Pneumatic Shift
4
Examples
5
Tradeoffs
6
Test
// Section 01
What Is a Power Take-Off?
V5 robots have 8 motor ports. Every motor you give to a mechanism is one less for your drivetrain — and vice versa. A PTO lets you break that tradeoff by sharing motors between systems.

A Power Take-Off (PTO) is a mechanism that mechanically connects two subsystems to a shared set of motors. A shifting mechanism — usually pneumatic — connects or disconnects each subsystem from the motor as needed.

The classic VRC application: use your drive motors to power a hang or lift at the end of the match, when you no longer need to move across the field. The motors do not change — only which mechanism they are connected to does.

🎯 Rule of Thumb
A PTO is justified only when you need more power than your remaining motors can provide AND the two shared functions never need to run simultaneously. If drive and the mechanism ever need power at the same time, a PTO will not work. Design your match strategy around the constraint before building the mechanism.

PTO vs Transmission

A PTO shifts which mechanism the motor connects to. A transmission changes the gear ratio between the motor and a single mechanism. These are different things:

// Section 02
When Motor Sharing Is Worth It
PTOs add mechanical complexity. They are only worth the build time and failure risk when the motor budget genuinely cannot be solved any other way.

The Motor Budget Problem

A standard V5 robot has 8 motor ports. A typical allocation:

If you need a third significant mechanism — especially one that requires high torque like a hang — you have a motor budget problem. A PTO solves it by time-sharing motors that are not needed simultaneously.

Good PTO Candidates

Bad PTO Candidates

// Section 03
Pneumatic Shifting Concepts
Pneumatics provide the force and speed required to engage or disengage a PTO clutch reliably. A hand-built mechanical shifter is rarely fast or reliable enough for competition use.

How a Pneumatic PTO Shift Works

The pneumatic cylinder extends or retracts to move a shifting collar, dog gear, or clutch plate. When engaged, the motor drives the target mechanism. When disengaged, the motor either idles or drives the other mechanism.

Shifting Mechanism Types

Air Budget for Shifting

Every PTO shift uses a pneumatic activation. Plan your shifts in advance and count them against your air budget. A hang PTO that shifts once is cheap. A mechanism that shifts frequently across a match can exhaust your supply. See the Pneumatics Best Practices guide for air budget calculation.

💡
Test shifts at low air pressure. Your pneumatic system loses pressure across a match. Test the PTO shift mechanism at 60% of your starting pressure to verify it still engages reliably. A PTO that only works at full pressure will fail late in a match or after a long queue.
// Section 04
Drive-to-Mechanism & Mechanism-to-Drive Examples
Real VRC applications of motor sharing. These examples show the match strategy implications alongside the mechanical design.
🚗 Drive → Hang (Most Common)
When: Last 20–30 seconds of match when the robot is at the hang bar. Drive is no longer needed.
Mechanics: Four drive motors shift to power a high-reduction winch or passive hang mechanism. High torque needed — drive motors can provide it.
Match strategy: Robot must be positioned before shift. After shift, robot cannot drive. Allocate time carefully.
⬆️ Drive → Lift (Stacking Endgame)
When: Game requires a high-force lift at endgame (tower balance, stack height) that needs more torque than 2–3 dedicated motors provide.
Mechanics: Two or four drive motors shift to assist or power the lift at full extension.
Match strategy: Robot must be in scoring position before shift. No repositioning after.
⚙️ Intake Motor → Scorer (Alternating Cycle)
When: Robot intakes in one field zone and scores in another. Never does both simultaneously.
Mechanics: One or two motors alternate between powering intake rollers and a scoring conveyor via a PTO shift.
Match strategy: Requires precise driver coordination. Any simultaneous demand from both subsystems stalls the shared motor.
// Section 05
Tradeoffs, Failure Points & Maintenance
PTOs add mechanical complexity that most teams underestimate. Know the failure modes before committing to the design.

Tradeoffs

BenefitCost
More effective motors for high-demand tasksAdded mechanism weight and part count
Enables capabilities not otherwise possible in 8-motor budgetDedicated pneumatics required for shifting
Can improve endgame performance significantlyStrategy constraint: shared systems cannot run simultaneously
Well-designed PTO is very reliable once tunedTakes significantly more design and build time than a dedicated motor solution

Failure Points

⚠️ Stop Building If…
×
Shifting is unreliable at reduced pressure
Test at 60% starting pressure. If it fails, the PTO will fail late in matches.
×
Dog teeth chipping after 20 shifts
Gear mesh misaligned. Fix axial alignment before adding air cycles.
×
Driver forgets which mode the robot is in
Add a LED or Brain screen indicator. Operator mode confusion causes matches to be lost.

Maintenance Schedule

// Section 06
Testing Checklist & Notebook Evidence
A PTO must be tested as a system — not just the shift mechanism in isolation. Test the full match cycle including timing and driver procedure.
🔬 PTO Testing Checklist
20 consecutive shift cycles — no missed engagements
Shift from mode A to mode B and back. Count any partial engagements.
Shift tested at 60% starting air pressure
Must engage reliably at reduced pressure. Simulate end-of-match condition.
Full match simulation with planned shift timing
Run 1m30s match simulation. Execute shift at planned moment. Verify both modes work.
Mode indicator (LED or screen) visible and correct
Driver must know which mode is active without looking at the mechanism
Dog teeth inspected after 20 shifts — no chipping
If teeth are chipping, fix alignment before competing
Air consumption counted for full match with PTO shifts
Verify air budget allows full match + all planned shifts + any pneumatic mechanisms
Driver shift procedure practiced 10 times minimum
Throttle-down protocol, timing, mode verification — must be automatic

Notebook Evidence

⚙ STEMEngineering: Systems Integration and Constraint Analysis
A PTO is a systems engineering problem — you are managing shared resources under constraints. This is identical to how software engineers schedule CPU time on a multi-process system, or how automotive engineers share a transmission between drive modes. The constraint is time-sharing: two users, one resource, no simultaneous demand. Documenting this constraint, your design solution, and the validation data is exactly what separates a Design Award notebook from one that just describes what you built.
🎤 Interview line: “We had a motor budget problem — we needed 4 drive motors and 4 mechanism motors, but the hang required 2 additional high-torque motors we didn’t have. We designed a pneumatic PTO so the drive motors double as hang motors in the last 20 seconds. The match strategy constraint is that we must be positioned before shifting. We validated this in 10 full match simulations before competition.”
Related Guides
⬆️ Lift Systems → 🤖 Advanced Robot Code → 💨 Pneumatics →
← ALL GUIDES