The second customer always asks for a different payload. You built the aircraft around a camera, and now somebody wants a gas sensor, a speaker, a parcel hook, or a scanner on the same airframe. If the first payload was bolted on with a bracket and a hand-soldered power tap, that request turns into a redesign. If the aircraft has a real payload interface, it turns into a bracket and a configuration file. That difference decides whether you have one product or a platform.
An interface is a commitment, not a bracket
A payload interface is a published contract: this is where a payload attaches, this is the mass and moment it may impose, this is the power available and under what conditions, this is the data path, and this is how the aircraft learns what is connected. Everything on that list has to be decided once and then held stable, because the value of the interface comes entirely from third parties and future teams being able to rely on it.
The temptation is to defer the decision until you know what payloads people want. Resist it. An interface defined generously early costs a little weight; one retrofitted later costs a frame revision, a harness revision, and firmware work, and it strands every unit already in the field. The considerations behind developing a drone accessory apply from the other side of the same connector.
The mechanical side
Start with the attachment pattern. Whatever you choose, publish it as a drawing with a datum, hole positions, thread size, and a keep-out envelope for propeller clearance and landing gear. A simple four-hole pattern on a defined bolt circle, or a dovetail rail with a locking screw, covers most needs.
Then decide whether the payload is tool-free. Quick-release matters more than engineers expect, because swaps happen in the field, in the wind, with gloves on, often several times an hour. A good quick-release has a positive detent, a single motion to engage, an obvious locked indication, and no loose parts. It also has a defined maximum play, because a payload that can rock a degree will feed vibration into the airframe and confuse anything with a camera in it.
Mass is the other half of the mechanical contract. State a maximum payload mass, a maximum moment about the mount, and a maximum overhang. A three-pound payload hanging four inches forward of the mount is a very different structural case from the same mass sitting directly under it, and customers will do both unless you say otherwise.
Power the payload is allowed to draw
Publish three numbers: a continuous current at a stated voltage, a peak current with a maximum duration, and the behavior at low battery. Most designs offer regulated 12 V and 5 V rails plus unregulated battery voltage, and the unregulated rail is the one that causes trouble, since a payload designer who assumes a nominal figure will be surprised by a pack that swings from full charge down to the cutoff.
Protect the aircraft from the payload. A payload short circuit must not take down the flight controller, so the payload rail needs its own fuse or electronic current limit, and ideally its own regulator rather than a tap off the autopilot supply. Inrush from a payload with large input capacitance can brown out the whole aircraft at plug-in, which argues for a soft-start or a staged connector where ground mates first.
Wiring is where a clean design goes wrong physically. Payload harnesses get flexed, tugged, and reconnected constantly, so the guidance in designing harnesses that survive assembly and handling applies with extra force here, particularly strain relief at both ends and a service loop that cannot be pinched by the mount.
The data path
| Bus | Practical bandwidth | Typical payloads | Notes |
|---|---|---|---|
| Serial with MAVLink | Low | Sensors, releases, simple actuators | Easiest integration with the autopilot ecosystem |
| CAN, commonly DroneCAN | Low but robust | Multiple devices on one pair | Excellent noise immunity, supports device enumeration |
| Ethernet | High | Cameras, scanners, onboard compute | Heavier connectors and cable, needs a switch |
| USB | Medium to high | Cameras and off-the-shelf modules | Connector durability and cable length are real limits |
| Discrete lines, PWM or GPIO | Trivial | Triggers, releases, lights | Always keep one or two, they solve problems cheaply |
Most serious platforms end up with a combination: CAN or serial for command and telemetry, Ethernet for bulk data, and a couple of discrete lines for triggers. Whether the autopilot itself can host these buses is one of the criteria in choosing a flight controller, and it is easier to pick a board with spare ports than to add them later.
Decide who is the master. If the payload can command aircraft motion, such as a scanner requesting a slower pass or a camera requesting a hold, you have created a control authority path with real safety implications, and it needs limits enforced on the autopilot side rather than trusted from the payload.
Center of gravity, and why the gimbal cares
Every payload change moves the center of gravity, and a multirotor tolerates less of that than people assume. An offset CG makes the aircraft fly with a permanent tilt, motors on one side run hotter, endurance drops, and the margin available for wind decreases.
Give the mount adjustment in the fore and aft axis, publish the allowable CG envelope as a physical range on the airframe, and provide a documented way for the operator to check it, such as a balance point marked on the frame or a two-scale procedure. On aircraft with a gimbal, payload balance is a second and separate problem, since an unbalanced gimbal draws more current, heats its motors, and loses stabilization performance long before it visibly fails. Both effects tie into gimbal and vibration isolation design, where added payload mass changes the tuning of the isolators themselves.
The aircraft should know what is attached
Firmware discovery is the feature that turns a mount into an interface. At minimum, the payload should identify itself on connection with a type, a model, a firmware version, and its mass and CG offset. The aircraft then applies the right parameter set: adjusted mass for the controller, adjusted flight time estimate, the correct control page on the ground station, and the correct failsafe behavior for that payload.
Implementation can be as cheap as an ID resistor on a dedicated pin, read by an ADC, mapping to a table of known payloads. A one-wire EEPROM in the connector is better and still cheap. Full enumeration over CAN is best and is worth it once you support more than a handful of devices. Whatever the mechanism, the aircraft should refuse to arm with an unrecognized payload if the mission is safety-sensitive, and should log the payload identity into the flight record.
Different payload families make different demands here. A thermal imaging payload mostly needs power, a data path, and a stable mount. A scanning LiDAR payload also needs precise time synchronization with the aircraft's position solution, which is an interface requirement that no bracket will solve.
Connectors and weather
Payload connectors sit on the underside of an aircraft that lands in dirt and flies in rain. Choose sealed circular connectors keyed so reverse insertion is impossible, rate them for the mating cycles a working operator will impose, and provide a blanking cap for flight without a payload. Sealing that opening is the same problem as any other enclosure that has to keep water out, complicated by the fact that this one gets opened daily.
Finally, write it all into an interface control document with a version number. One page of drawing, one page of electrical limits, one page of protocol. That document is what lets someone else build a payload for your aircraft, and platforms win over products precisely because someone else is willing to.
Projects House develops drone platforms and the payload interfaces that make them extensible, from mount design through firmware discovery. If you are turning a single-purpose aircraft into a platform, describe the payloads you expect through our contact form.