The Core Difference Between Brushless Motor and Brushed Motor Designs
The fundamental difference between brushless motor and brushed motor architectures lies entirely in commutation—the method used to reverse the electrical current in the motor windings to keep the rotor spinning. A brushed DC motor relies on physical carbon brushes sliding against a segmented copper commutator on the rotor to switch the current mechanically. A brushless DC motor (BLDC) flips this geometry: the permanent magnets are on the rotor, the windings are on the stator, and the commutation is handled electronically by an external controller.
This physical divergence dictates everything else: wiring complexity, maintenance intervals, thermal limits, and the type of drive electronics you must pair with the motor.
Wiring and Terminal Identification
Before you wire up a power supply, you must correctly identify the motor terminals. Miswiring a BLDC hall sensor to a 24V bus will instantly fry the sensor ICs.
| Motor Type | Power Terminals | Signal / Feedback Terminals | Reversing Direction |
|---|---|---|---|
| Brushed DC | 2 wires (+ and -). Usually Red/Black. | None (unless an external encoder is added). | Swap the + and - polarity. |
| Brushless (BLDC) | 3 phase wires (U, V, W or A, B, C). Often Yellow, Blue, Green. | 5-pin Hall Sensor JST: VCC (5V), GND, Hall A, Hall B, Hall C. | Swap any two of the three phase wires, or reverse the logic in the ESC firmware. |
Torque Curves, Controllers, and Failure Signatures
Understanding which motor type fits your load profile requires looking past the peak power rating and examining the torque curve and the drive electronics required to extract that power.
Load Profiles and Controller Demands
Brushed Motors: These exhibit a linear, downward-sloping torque curve. They produce maximum torque at stall (0 RPM) and zero torque at no-load maximum speed. Because the commutation is mechanical, you only need a simple PWM signal driving a single MOSFET (for unidirectional) or an H-bridge (for bidirectional) to control speed.
Brushless Motors: BLDC motors maintain a much flatter torque curve across their operating RPM range, making them vastly superior for loads that require sustained torque at higher speeds (like drone propellers or conveyor belts). However, they demand a 3-phase Electronic Speed Controller (ESC). For high-precision robotics, you will need an ESC capable of FOC (Field Oriented Control), such as an ODrive or SimpleFOC board, which uses sine-wave commutation to eliminate torque ripple. Do not confuse a BLDC with a stepper motor; while both are brushless, steppers are optimized for holding torque and open-loop positioning, whereas BLDCs are optimized for continuous rotational velocity and dynamic torque.
Failure Signatures: What to Listen and Look For
- Brushed Motor Overheat/Stall: If overloaded, the brushes will arc heavily. You will smell burning varnish from the stator windings, and you may see a blue flash inside the motor can. Prolonged stalling will melt the commutator solder joints, causing an open circuit.
- BLDC Desync (The 'Hum'): If a BLDC is asked to produce more torque than the ESC can commutate (often due to aggressive acceleration or too high a mechanical load), it will 'desync.' The motor will violently stutter, emit a loud, low-frequency hum, and draw massive spike currents until the ESC's overcurrent protection trips.
- BLDC Hall Sensor Failure: If the motor just clicks or refuses to start but the ESC shows no error, a hall sensor wire is likely broken. The controller doesn't know the rotor position and fails to initiate the commutation sequence.
Motor Type Comparison Matrix
Here is the direct engineering comparison to help you weigh the system-level trade-offs. Remember to evaluate the total system cost, not just the bare motor price.
| Criteria | Brushed DC Motor | Brushless DC Motor (BLDC) |
|---|---|---|
| Torque Curve | Linear drop; max torque at stall. | Flat across mid-range; drops at high RPM due to back-EMF. |
| Control Needs | Simple DC voltage, PWM, or H-Bridge. | Complex 3-phase ESC (Trapezoidal or FOC sine-wave). |
| Efficiency | 75% - 80% (brush friction & voltage drop). | 85% - 95% (no brush friction, lower I²R losses). |
| Maintenance | High. Brushes wear out in 1,000 - 5,000 hours. | Low. Only bearings wear out (10,000+ hours). |
| Cost (Motor) | Low ($5 - $20 for hobby sizes). | Higher ($30 - $150+ for equivalent continuous power). |
| Cost (System) | Very Low (Motor + $2 MOSFET). | Higher (Motor + $40-$100+ ESC/Driver). |
Sizing Rule of Thumb and Worked Load Example
A common mistake is converting a load's required horsepower or kilowatts directly into a motor rating without accounting for duty cycle, thermal mass, and gearbox efficiency. Never use naked HP/kW conversions without load context.
The Sizing Rule of Thumb: Calculate the continuous mechanical power required at the output shaft, then multiply by a 2.0x safety factor for thermal headroom and transient peak loads. Always factor in gearbox efficiency (typically 80-90% for planetary, 50-60% for worm drives).
Worked Load Example: DIY Conveyor Lift
Let's size a motor for a small conveyor belt lifting a 5 kg mass vertically at a speed of 0.5 m/s, using a drive pulley with a 0.1-meter radius.
- Calculate Force: $F = m \times g = 5 \text{ kg} \times 9.81 \text{ m/s}^2 = 49.05 \text{ N}$.
- Calculate Required Torque ($\tau$): $\tau = F \times r = 49.05 \text{ N} \times 0.1 \text{ m} = 4.905 \text{ Nm}$.
- Calculate Required Speed ($\omega$): $\omega = v / r = 0.5 \text{ m/s} / 0.1 \text{ m} = 5 \text{ rad/s}$ (which is roughly 47.7 RPM).
- Calculate Mechanical Power ($P$): $P = \tau \times \omega = 4.905 \text{ Nm} \times 5 \text{ rad/s} = 24.52 \text{ Watts}$.
- Apply Sizing Factor & Gearbox Loss: Assuming an 85% efficient planetary gearbox, the motor must output $24.52 / 0.85 = 28.8 \text{ W}$ continuously. Applying our 2.0x thermal safety factor, we need a motor rated for ~58 W continuous.
Attempting to run a 30W brushed motor at 100% duty cycle here will result in melted commutator solder within minutes. You must select a motor rated for at least 60W continuous.
The Decision Tree: Which Motor Should You Actually Buy?
Stop debating specs in a vacuum. Use this decision path to terminate your search and pick a concrete architecture. According to industry motion control guidelines, matching the commutation type to the duty cycle is the primary driver of system lifespan.
| If Your Application Is... | And Your Budget/Duty Cycle Is... | Then Choose This Architecture |
|---|---|---|
| Continuous duty automation, CNC spindle, robotic arm joint, or high-RPM drone. | Budget allows $80+; Duty cycle is > 30%. | Brushless (BLDC) with FOC Driver. |
| Intermittent linear actuator, simple toy, RC car steering, or basic 12V winch. | Budget is strict (< $25); Duty cycle is < 10%. | Brushed DC with H-Bridge. |
| Precise open-loop positioning (3D printer axes) where continuous rotation is not the primary goal. | Budget is moderate; holding torque is critical. | Stepper Motor (Not BLDC/Brushed). |
The Final Verdict and Default Picks
If you are building a modern, continuous-duty DIY project—such as a robotic arm, an automated camera slider, or an AGV (Automated Guided Vehicle)—the default pick is a NEMA 23 Closed-Loop BLDC servo (such as the StepperOnline CL57T or an ODrive-compatible D5065 outrunner). The upfront cost is higher (roughly $85-$120 for the motor and driver combined), but the flat torque curve, zero brush maintenance, and integrated encoder feedback will save you weeks of debugging mechanical slip and thermal shutdowns.
Reserve brushed motors (like the classic Mabuchi RS-775 12V motor, ~$12) strictly for applications where the motor runs for less than 3 minutes at a time, cost is the absolute primary constraint, and you only need simple on/off or basic PWM speed control without the overhead of tuning a 3-phase ESC.






