The FPV drone system
The main subsystems of an FPV racing quad and how the frame, power, control and video parts connect.
12 cards · 7 quiz questions · 6 min read
An FPV (First Person View) racing quad looks like a single buzzing object, but it is really a tight integration of several subsystems working together. The pilot wears goggles that show a live camera feed from the aircraft, so flying feels like sitting in the cockpit rather than watching from the ground. Understanding the parts and how they connect is the first step to building, tuning or repairing one.
The mechanical core: frame and motors
The frame is the skeleton, almost always carbon fibre for its strength-to-weight ratio. It holds four motors at the ends of its arms and mounts the electronics in a protected central stack. Racing quads are commonly described by propeller size; a 5-inch quad takes 5-inch props and is the popular all-round racing and freestyle class.
The four motors are brushless DC (BLDC) motors. A quad steers by varying the speed of individual motors: spinning the rear pair faster pitches the nose down, spinning one diagonal pair faster yaws the craft, and so on. There are no control surfaces, only thrust differences.
The power and control electronics
Between the motors and the brain sit the ESCs (Electronic Speed Controllers). Each ESC takes a simple throttle command and generates the precisely timed three-phase power a brushless motor needs to spin smoothly. Modern quads often use a single 4-in-1 ESC board serving all four motors.
The flight controller (FC) is the brain. It carries an IMU (an inertial measurement unit combining a gyroscope and accelerometer) that senses the quad’s rotation and tilt hundreds of times per second. The FC fuses this sensor data with the pilot’s stick commands and continuously decides how fast each motor should spin to keep the craft stable and responsive. Most FCs run open-source firmware such as Betaflight, which handles stabilisation and lets the pilot tune flight behaviour through PID and rate settings.
The two wireless links
A crucial point about FPV systems is that they use two completely separate wireless links:
- The control link. The pilot’s handheld radio (transmitter) sends stick and switch positions to a small receiver (RX) on the quad, often on the 2.4 GHz or 900 MHz band. The receiver passes those commands to the flight controller.
- The video link. The FPV camera captures live video, and the VTX (video transmitter) broadcasts it wirelessly, typically on the 5.8 GHz band, to the pilot’s goggles, which contain a matching video receiver and screens.
Control and video are independent. You can lose video and still have control, or vice versa, which matters for safety and failsafe planning.
How power flows
A LiPo battery is the energy source. It feeds the ESCs (often through a power distribution board), which drive the high-current motors directly. A regulated rail, commonly 5 V produced on the FC or distribution board, powers the lower-current electronics: the flight controller itself, the camera, the VTX and the receiver. Keeping the heavy motor current separate from the sensitive signal electronics is an important part of a clean build.
Following a command end to end
It helps to trace one stick movement through the whole system:
- The pilot pushes the throttle stick on the radio.
- The receiver on the quad picks up the command and hands it to the FC.
- The flight controller mixes that input with live IMU data to work out the target speed for each motor.
- The FC sends a throttle value to each ESC.
- Each ESC drives its brushless motor at the requested speed, and thrust changes accordingly.
Meanwhile, entirely in parallel, the camera to VTX to goggles video chain runs continuously so the pilot can see the result.
Putting it together
A complete FPV quad is therefore a layered system: a mechanical core (frame and motors), a power-and-control core (battery, ESCs, flight controller), and a video core (camera, VTX, goggles), stitched together by two independent radio links. Every later topic, brushless motors and ESCs, LiPo batteries, tuning firmware, slots into this map. Knowing where each part sits and how the signals and power flow between them makes diagnosing problems far more systematic than guessing.
What is the defining feature of First Person View flying?
Sources
- Oscar Liang author Authoritative FPV drone build guides covering the full system.
- Betaflight Open Source Flight Controller — Betaflight documentation website Official docs for the flight controller firmware referenced here.