The moment a product has a motor in it, the prototype stops being a model and becomes a machine. It stores energy, delivers torque faster than a hand can react, and keeps running when a wire comes loose. Most first motorized prototypes fail in one of three ways: the motor is too weak because nobody calculated the load, the gearbox ratio was picked from stock, or it runs beautifully for ninety seconds and then is too hot to touch. All three are avoidable with a few hours of arithmetic before anything is ordered.

Size the load before you choose the motor

The right sequence is load, torque, speed, motor, gearbox, driver, battery. Starting from a motor someone happened to have produces a prototype that cannot scale. Write down four numbers first:

  • Required torque at the output, including friction, worst-case load, and gravity. A lifting mechanism on a lever arm is force times distance, and the distance is usually longer than people remember.
  • Required speed at the output, in RPM or linear speed.
  • Duty cycle. Continuous, or five seconds on and a minute off? This changes thermal design and often lets a smaller motor do the job.
  • Acceleration. Inertial torque at startup can far exceed the steady-state requirement when the moving mass is heavy.

Only then does motor selection make sense; the mechanics are in calculating the motor torque a product needs, the type tradeoffs in stepper versus servo versus brushed DC. A rule that survives most projects: brushed DC for cheap intermittent motion, brushless for continuous running, stepper for open-loop positioning at modest speed, closed-loop servo for accuracy under varying load.

Gearing: ratio, backlash, and efficiency

Motors are efficient at high speed and low torque; products want the opposite. The gearbox converts, and introduces three things people forget.

Ratio

Output torque is motor torque times ratio times efficiency; output speed is motor speed divided by ratio. Pick the ratio so the motor runs near its efficiency peak — usually well above half of no-load speed — at the normal operating point, not at stall.

Backlash

Every gear mesh has lost motion when direction reverses. A cheap plastic spur gearbox may have 1–3 degrees of backlash at the output; a quality planetary gearbox is often under 1 degree; a harmonic drive is nearly zero and costs accordingly. If your product positions something and then reverses, backlash is the error you will chase for weeks; if it only turns one way, it may not matter. The wider choice is covered in belt drive versus gear drive.

Efficiency and back-driving

A spur gearbox might be 80–90% efficient; a worm gear at high ratio might be 40–60%, and the lost power becomes heat. Worm drives are effectively self-locking at high ratio, so the load holds with no power — a safety feature or a hazard, depending on whether the mechanism must be movable by hand in a failure.

Buy prototype gearboxes rather than building them: a stock gearmotor with published curves gives you data, a shop-made gear train gives you a mystery. Plastic gears are fine within their limits — see what load plastic gears can take — but a printed gear in a load path is a prototype-only expedient.

Drive electronics that protect the prototype

Wire the motor straight to a battery and the first fault destroys something. Include all of this from the first build:

  1. Current limiting set to the motor's continuous rating, not its stall current — which on a small brushed motor can be ten times the running current and flows the instant the motor is blocked.
  2. A fuse and a physical disconnect you can reach without putting your hand near the mechanism.
  3. An emergency stop that removes power. Not a software stop — a button that opens the circuit, where a startled person will actually hit it.
  4. Flyback and transient protection. Motors are inductive loads and will inject spikes into your logic.
  5. Separate power and logic grounds, joined at one point. Motor current in a shared ground path is the classic cause of microcontrollers resetting when the motor starts.
  6. Soft start. Ramping PWM duty reduces inrush, shock, and belt slip in one line of code.

Driver topology, sensing, and feedback are their own subject, treated in motor control electronics. A prototype battery must be sized for the stall case, not the average — a theme in battery pack design.

Feedback: how much do you actually need

FeedbackGives youTypical added cost
None (open loop)Timed motion only; no idea if it moved$0
Limit switches or hall endstopsKnown end positions, homing, jam detection$1–$5
Current sensingTorque estimate, stall and obstruction detection$1–$3
Incremental encoderSpeed and relative position, closed-loop control$5–$40
Absolute encoderPosition known at power-up, no homing move$20–$150

Many products need only limit switches plus current sensing, which earns its cost twice: it detects a jam before the motor cooks, and lets the product respond to an obstruction — often a safety requirement in anything that closes or lifts.

Stall, heat, and the thermal test everyone skips

A stalled motor converts nearly all its electrical input into heat in the windings, and small motors have very little thermal mass. A motor comfortable on a five-second duty cycle can reach its insulation limit in under a minute of stall. So the firmware must detect stall — via current, an encoder that stops moving, or a timeout — and shut down. Then run the thermal test: thermocouples on the motor case and driver, worst-case duty cycle, temperature recorded until it plateaus. Do it inside the actual housing, because a motor tested in open air behaves differently once sealed in — the problem covered in thermal management for electronic products.

Bench safety for a prototype with real torque

Guard pinch points and exposed rotating shafts before the first power-on. Never wear gloves, loose sleeves, or a lanyard near a rotating drive — gloves are what pull a hand into a mechanism. Clamp the prototype down; an unrestrained gearmotor throws itself across a table under reaction torque. Power up at reduced voltage from a current-limited supply with your hand on the disconnect, keep everyone out of the plane of rotation, and expect a coupling or bracket to fail. Before anything with mains power leaves the bench, run the checks in electrical safety testing on a prototype.

Projects House develops motorized products end to end — load analysis, drive selection, gearbox specification, driver electronics, and firmware with real stall protection. Describe your mechanism through the contact form.