A hoverboard is a self-balancing, two-wheeled electric personal transporter that uses gyroscopic sensors and brushless DC (BLDC) hub motors to maintain equilibrium and propel the rider. From an electrical engineering perspective, integrating a hoverboard into a circuit or repurposing its components transforms a simple open-loop DC power system into a high-current, closed-loop 3-phase commutation environment requiring real-time sensor fusion and microsecond-level PWM switching. While consumers often confuse hoverboards with magnetic levitation (maglev) skateboards, simple brushed-DC electric kick scooters, or one-wheeled self-balancing boards, a true hoverboard is defined by its dual independent BLDC hub motors and central inertial measurement unit (IMU) feedback loop.
The Core Electrical Architecture
To understand how a hoverboard functions, you have to look past the plastic shell and examine the power distribution and logic layers. The system is essentially a mobile, battery-powered variable frequency drive (VFD) scaled down for a 36V DC bus. Below is the standard specification sheet for a typical 8.5-inch consumer hoverboard, detailing the exact electrical parameters you will encounter when probing or repurposing these boards.
| Component | Specification | Electrical Role | Common Part / Standard |
|---|---|---|---|
| Battery Pack | 36V Nominal (42V Max), 4.4Ah (158Wh) | Energy storage; 10S2P Li-ion cell topology | Samsung 25R or Sony VTC6 18650 cells |
| Hub Motors (x2) | 350W each, 36V, 3-Phase BLDC | Propulsion and dynamic braking; contains internal Hall sensors | 6.5" or 8.5" stator with 30-pole rotor |
| Motor Controller | Dual 15A MOSFET H-Bridges | Commutes DC to 3-phase AC via trapezoidal or FOC PWM | IRFB4110 or similar N-channel MOSFETs |
| IMU Sensor | 6-Axis (Accel + Gyro), I2C Interface | Measures pitch and roll rate for the PID control loop | InvenSense MPU-6050 or ICM-20602 |
| BMS (Battery Management) | 10S Li-ion, 30A Continuous Discharge | Cell balancing, over-current, and under-voltage protection | Custom PCB with DW01A and 8205A dual MOSFETs |
BLDC Commutation and the PID Feedback Loop
The magic of a hoverboard isn't just in the motors; it's in the control theory that keeps the rider from falling on their face. The system relies on a Proportional-Integral-Derivative (PID) control loop running at roughly 100Hz to 200Hz on the main microcontroller (often an STM32 or GD32 ARM Cortex-M chip).
The IMU reads the pitch angle (how far forward or backward the board is tilting). If the rider leans forward, the pitch angle changes. The PID controller calculates the error between the desired pitch (usually zero, or slightly offset for acceleration) and the actual pitch. It then outputs a PWM duty cycle command to the motor controller to spin the wheels forward, effectively "catching" the rider's falling center of mass. This is a classic inverted pendulum problem.
Worked Numeric Example: Incline Current Draw and Voltage Sag
Let’s calculate the electrical stress on a standard hoverboard climbing a 15-degree incline to understand why BMS trips and "shutdown falls" occur.
- System: 36V nominal (10S2P 18650 pack), dual 350W BLDC motors.
- Mechanical Power Required: 700W total to maintain speed on the incline.
- Efficiency: Assuming 80% combined motor and controller efficiency at this load, the electrical power draw is P = 700W / 0.80 = 875W.
- Nominal Current: I = P / V = 875W / 36V = 24.3A.
However, under heavy load, lithium-ion cells experience voltage sag due to internal resistance (typically ~30mΩ per cell). If the pack voltage sags to 33V (3.3V per cell under load), the current spikes to maintain the same power:
I = 875W / 33V = 26.5A
A standard 10S2P BMS using 20A continuous cells (like the Samsung 25R) can theoretically handle 40A peak. But if the BMS overcurrent protection threshold is conservatively set at 30A to prevent MOSFET overheating, a sudden gust of wind or a slightly steeper patch of road pushing the draw to 31A will cause the BMS to instantly cut the discharge FETs. The motors lose all holding torque, and the rider is thrown forward. This is why checking your BMS continuous current rating and cell health is critical when diagnosing random hoverboard shutoffs.
Where You Meet This in Practice
In the DIY electronics and robotics community, you rarely meet a hoverboard in its original plastic shell. Instead, you meet repurposed hoverboard motors and controllers. Because manufacturers produced millions of these units, surplus 6.5-inch and 8.5-inch BLDC hub motors are incredibly cheap (often $15 to $25 each on eBay or AliExpress) and offer massive torque for DIY rovers, battlebots, and electric wheelchairs.
When repurposing these motors, you must interface with the internal Hall effect sensors to commutate the motor correctly. The motor phase wires are thick (usually 12 AWG or 14 AWG) and colored Yellow, Green, and Blue. The Hall sensor cable is a 5-pin JST connector:
- Red: VCC (Requires 5V, must be clean logic power)
- Black: GND
- Yellow, Green, Blue: Hall Signals A, B, C (Open-collector outputs requiring 10kΩ pull-up resistors to 3.3V or 5V on your microcontroller)
If you are driving these with an off-the-shelf motor controller like the ODrive or a VESC (Vedder Electronic Speed Controller), you must map the Hall sensor states to the correct electrical angle. A common mistake is assuming the Hall sensors output analog voltages; they output digital square waves. If you forget the pull-up resistors on your Arduino or ESP32 GPIO pins, the floating signals will cause the motor to stutter violently and potentially blow a phase MOSFET on your driver.
Common Confusions and Troubleshooting
Is a hoverboard the same as a maglev board?
No. A maglev (magnetic levitation) board uses powerful neodymium magnets and electromagnetic tracks to physically float above a surface, eliminating rolling resistance. A consumer hoverboard relies entirely on physical rubber tires and mechanical bearings; the "hover" name is purely a marketing term borrowed from sci-fi, referring to the self-balancing nature of the ride.
Why does my hoverboard beep and shut off when the battery shows 50%?
This is almost always caused by an unbalanced battery pack, not a dead battery. In a 10S pack, the BMS monitors cell groups. If one parallel group degrades and drops to 2.8V while the rest are at 3.6V, the BMS will trigger a low-voltage cutoff to prevent that specific cell group from reversing polarity and catching fire. The main gauge reads the total pack voltage (which looks like 50%), but the BMS trips on the lowest cell group. The fix requires manually top-balancing the cells with a bench power supply, or replacing the 10S pack entirely.
Can I run a hoverboard motor on a standard 12V car battery?
Technically yes, but performance will be abysmal. Hoverboard BLDC motors are wound for a 36V nominal bus. Running them at 12V reduces the back-EMF limit, cutting your top RPM by roughly 66%. More importantly, to get the same mechanical power out of the motor at 12V, the current must triple. A motor pulling 10A at 36V will attempt to pull 30A at 12V to do the same work, which will likely melt the 14 AWG phase wires or trip your ESC's overcurrent protection. Always use a DC-DC boost converter or a 3S/4S LiPo pack if you cannot use the original 10S battery.
Understanding the electrical reality of a hoverboard shifts it from a simple toy to a highly capable, high-current robotics platform. Whether you are diagnosing a tripped BMS, tuning a PID loop for a custom inverted pendulum project, or wiring up surplus hub motors to a VESC, respecting the 3-phase commutation and lithium-ion safety parameters is the key to a successful build.






