Using Micro Servos for Retractable Landing Brakes or Skids

Micro Servo Motors in Drones / Visits:3

There’s something deeply satisfying about watching a model aircraft—or even a small-scale experimental drone—touch down, deploy a set of landing brakes or skids, and roll to a controlled stop. It’s the kind of detail that separates a basic build from a truly polished one. But achieving that effect reliably, without adding significant weight or complexity, is where the humble micro servo motor becomes the unsung hero.

In this post, we’re going to explore everything you need to know about using micro servos for retractable landing brakes or skids. We’ll cover hardware selection, mechanical linkage design, control strategies, real-world performance considerations, and even a few pitfalls to avoid. By the end, you’ll have a solid framework for integrating these tiny but mighty actuators into your next project.

Why Micro Servos? The Case for Small-Scale Actuation

Before we get into the weeds of linkage geometry and PWM timings, let’s address the obvious question: why use a micro servo at all? Why not a solenoid, a linear actuator, or even a simple spring-loaded mechanism?

The answer comes down to three things: control, weight, and repeatability.

The Sweet Spot of Torque and Size

Micro servos—typically in the 9g to 17g range—offer a remarkable torque-to-weight ratio. A standard SG90, for example, delivers around 1.5 kg·cm of torque at 4.8V while weighing only 9 grams. That’s enough to actuate a small skid or brake flap made of lightweight materials like balsa, foam, or thin carbon fiber.

Compare that to a solenoid, which is either fully on or fully off, or a spring mechanism that offers no mid-stroke control. With a micro servo, you can precisely position the brake or skid at any angle between fully retracted and fully deployed. That opens up the possibility of variable braking force, partial deployment for stability in crosswinds, or even a slow, cinematic deployment sequence.

Power Efficiency and Holding Torque

Another often-overlooked advantage is holding torque. Once a micro servo reaches its commanded position, it can hold that position with minimal current draw, especially if you’re using digital servos with a high refresh rate. This is critical for landing brakes, which need to stay deployed under aerodynamic load without draining your battery.

Analog servos will draw continuous current to maintain position, but digital servos use a “hold and pulse” technique that reduces average power consumption. For a retractable skid that might be deployed for 30 seconds during landing, this makes a real difference in overall flight time.

Mechanical Design: From Servo Horn to Brake Surface

The mechanical linkage is where most projects succeed or fail. A micro servo can generate impressive torque, but that torque is useless if it’s not transmitted efficiently to the moving surface.

Direct Drive vs. Linkage Systems

The simplest approach is direct drive: mount the servo so that the servo horn directly rotates the brake or skid pivot. This works well for small, lightweight surfaces where the pivot point is colinear with the servo output shaft. However, it limits your placement options and can create packaging headaches.

A more flexible approach is a pushrod linkage. Here, the servo is mounted remotely, and a rigid pushrod connects the servo horn to a control horn on the brake surface. This allows you to place the servo in a more convenient location (e.g., inside the fuselage) while the brake sits on the wing or fuselage bottom.

Key geometry rule: The pushrod should be as close to perpendicular to both horns as possible at the midpoint of travel. This minimizes non-linear motion and reduces binding.

Calculating Required Torque

You don’t need a PhD in mechanical engineering, but a rough torque calculation will save you from embarrassing failures.

Torque (in kg·cm) = (Brake surface weight in kg × Distance from pivot to center of gravity in cm) + (Aerodynamic load factor)

For a typical foam or balsa skid weighing 10g with a CG 3cm from the pivot, the static torque is:

0.01 kg × 3 cm = 0.03 kg·cm

Add an aerodynamic load factor of 2-3x for landing speeds (say 30 km/h), and you’re at roughly 0.1 kg·cm. Even the cheapest micro servo can handle that. But if your brake is larger, heavier, or exposed to higher speeds, you’ll want to step up to a metal-gear micro servo like the MG90S, which offers 2.0 kg·cm at 6V.

Material Selection for Brakes and Skids

The brake or skid itself needs to be stiff, light, and abrasion-resistant. Here are three proven options:

  • 3D-printed PLA or PETG: Easy to prototype, but can soften on hot runways. Reinforce with a carbon fiber rod along the pivot edge.
  • Carbon fiber sheet: Extremely stiff and light, but brittle. Laminate with a thin layer of fiberglass for impact resistance.
  • Balsa wood with plywood reinforcement: Classic and repairable. Seal with thin CA glue for durability.

For the pivot, use a brass tube or a steel rod with a bushing. Plastic-on-plastic pivots will wear out quickly under repeated loading.

Electronic Integration: Wiring, Power, and Signal

Now that the mechanical side is sorted, let’s talk about how to actually control the servo.

Standard Servo Wiring (3-Pin)

Every micro servo uses the same 3-pin interface:

  • Red: Power (4.8V to 6.0V typical)
  • Brown or Black: Ground
  • Orange, Yellow, or White: Signal (PWM)

For a single servo, you can power it directly from your receiver’s servo rail, provided the receiver can handle the current draw. A typical micro servo draws about 150-250 mA under load, and up to 700 mA at stall. If you’re using multiple servos (e.g., left and right brakes), consider a separate BEC (Battery Eliminator Circuit) rated for at least 3A.

PWM Signal and Control Range

The standard PWM signal for servos is a 50 Hz pulse (20 ms period) with a pulse width ranging from 1 ms (full retract) to 2 ms (full deploy). Most micro servos have a mechanical range of about 180 degrees, but you’ll rarely use more than 60-90 degrees for a brake or skid.

Pro tip: Use a servo tester or your transmitter’s endpoint adjustment to find the exact pulse widths that correspond to your desired retracted and deployed positions. This prevents binding and reduces stress on the servo.

Using a Microcontroller for Advanced Control

If you’re building a custom UAV or experimental craft, you might want to control the brake deployment automatically based on airspeed, altitude, or landing gear status. This is where an Arduino, ESP32, or Raspberry Pi Pico comes in.

Here’s a simple Arduino sketch snippet that deploys the brake when throttle drops below 20%:

cpp

include <Servo.h>

Servo brakeServo; int throttlePin = A0;

void setup() { brakeServo.attach(9); brakeServo.write(0); // Retracted }

void loop() { int throttle = analogRead(throttlePin); if (throttle < 200) { // Below 20% throttle brakeServo.write(90); // Deploy } else { brakeServo.write(0); // Retract } delay(100); }

This is a trivial example, but you can easily extend it with hysteresis, debouncing, or even a smooth servo speed library to avoid jarring movements.

Real-World Performance: What to Expect at the Flying Field

Theory is great, but nothing beats real-world testing. Here’s what I’ve learned from building and flying several models with retractable landing brakes.

Deployment Speed and Timing

Micro servos are fast. A standard 9g servo can move 60 degrees in about 0.12 seconds at 4.8V. For a landing brake, that’s almost too fast. A sudden deployment at low altitude can pitch the nose down violently, especially on a delta-wing or flying wing.

Solution: Use a servo speed reducer (either hardware or software) to slow the deployment to 1-2 seconds. This gives the aircraft time to react aerodynamically and makes for a much smoother landing.

Aerodynamic Loads at Speed

At approach speeds (typically 15-25 km/h for small models), the aerodynamic load on a brake is modest. But if you accidentally deploy the brake at cruise speed (50+ km/h), you risk stripping the servo gears or snapping the pushrod.

I recommend adding a mechanical fuse—a weak point in the linkage that will break before the servo is damaged. A small plastic pushrod connector or a deliberately undersized screw works well. It’s easier to replace a $0.10 part at the field than to swap out a stripped servo.

Vibration and G-Forces

Micro servos are surprisingly resilient to vibration, but they are not immune. If your model has a gas or glow engine, mount the servo on a rubber vibration isolator. For electric models, vibration is rarely an issue unless you have an unbalanced prop.

During landing impact, the skid or brake will transmit shock loads back to the servo. To protect it, use a spring-loaded linkage or a compliant mount. A simple solution is to insert a small compression spring between the pushrod and the control horn. This allows the brake to deflect on hard landings without damaging the servo.

Advanced Techniques: Beyond Simple On/Off

Once you’ve mastered basic retractable brakes, there are several advanced techniques that can elevate your build.

Variable Braking Force

By using a microcontroller to send precise PWM values, you can deploy the brake to any intermediate angle. This allows you to modulate braking force during the landing roll. For example, deploy the brake to 30 degrees initially, then increase to 60 degrees as speed drops, and finally to 90 degrees for maximum drag.

This is particularly useful for short-field landings where you need aggressive braking but want to avoid a nose-over.

Differential Braking for Steering

On a tricycle-gear model, you can use two independent micro servos—one for each main gear brake—to implement differential braking. By applying more braking on one side than the other, you can steer the aircraft on the ground without using the rudder.

This requires a mixing function in your transmitter or flight controller. Most modern radios support this natively. For example, you can mix the rudder channel to the brake servos so that left rudder applies more left brake.

Integration with Flight Controllers (ArduPilot, iNav, PX4)

If you’re flying a autonomous drone or FPV platform, you can integrate the brake servos directly with your flight controller. In ArduPilot, for instance, you can assign a servo output to “Landing Gear” and configure it to deploy automatically when the aircraft enters a landing sequence.

You can also use the “Servo Feedback” feature to monitor the actual position of the brake, which is useful for detecting failures or confirming deployment.

Example ArduPilot parameter setup:

  • SERVO5_FUNCTION = 29 (Landing Gear)
  • SERVO5_MIN = 1000 (Retracted)
  • SERVO5_MAX = 2000 (Deployed)
  • LAND_GEAR_DEPLOY_ALT = 10 (Deploy at 10 meters altitude)

This level of automation makes for incredibly satisfying landings—especially when flying beyond visual line of sight.

Common Mistakes and How to Avoid Them

Even experienced builders run into issues with micro servo actuated brakes. Here are the most common pitfalls I’ve encountered.

Binding at Extreme Travel

Micro servos have limited angular resolution. If your mechanical linkage forces the servo to move beyond its mechanical limits, you’ll hear a telltale buzzing sound as the servo stalls. This can burn out the motor or strip the gears within seconds.

Fix: Always set your endpoints in the transmitter or flight controller to stay within the safe mechanical range. Use a servo tester to find the exact endpoints before final installation.

Overheating in Enclosed Spaces

Micro servos generate heat under continuous load. If you mount the servo inside a foam fuselage with no airflow, the heat can build up and cause the servo to behave erratically or fail.

Fix: Provide ventilation holes near the servo, or use a metal-gear servo with better thermal dissipation. Avoid running the servo at stall current for more than a few seconds.

Using Undersized Pushrods

A thin music wire pushrod (0.032” or smaller) may seem adequate, but under load it can flex or buckle. This introduces slop in the brake position and can cause flutter at high speed.

Fix: Use 0.047” or 0.062” music wire for pushrods longer than 10 cm. For very long runs, use a carbon fiber rod inside a plastic tube guide.

Ignoring Centering Accuracy

Not all micro servos center perfectly. Cheap servos can have a deadband of 5-10 microseconds, which translates to a few degrees of positional uncertainty. For a brake, this means it might not fully retract or deploy.

Fix: Test the servo’s centering accuracy before installation. If you need precise positioning, use a digital servo with a narrower deadband (e.g., 2-3 µs). Alternatively, use a closed-loop control system with a potentiometer feedback on the brake itself.

Practical Build Example: A Retractable Skid for a 250mm Quadcopter

To tie everything together, let’s walk through a real build: a retractable landing skid for a 250mm FPV quadcopter.

Components

  • 1x MG90S metal-gear micro servo (17g)
  • 1x 3D-printed PLA skid (8g)
  • 1x 0.047” music wire pushrod
  • 2x M2 screws and nylon locknuts
  • 1x 5V BEC (if not using 4S battery directly)

Assembly Steps

  1. Mount the servo inside the quadcopter frame, oriented so the output shaft faces the skid pivot point. Use rubber grommets to dampen vibration.
  2. Attach a servo horn with a hole at 10mm radius. This gives a good balance of torque and speed.
  3. Install the skid on a pivot made from a 3mm brass tube. The skid should rotate freely with minimal friction.
  4. Connect the pushrod from the servo horn to a control horn on the skid. Adjust the length so that the skid is fully retracted at 1ms pulse and fully deployed at 2ms.
  5. Program the flight controller to deploy the skid when throttle is below 20% and the quadcopter is within 1 meter of the ground (using a sonar or lidar sensor).

Flight Testing

On the first flight, deploy the skid manually at a safe altitude (5 meters) to verify that it extends fully and doesn’t cause any aerodynamic instability. Then test automatic deployment at landing. Expect a slight pitch-up moment when the skid deploys—this is normal and can be compensated with a small amount of forward elevator trim.

The result? A clean, professional-looking quadcopter that lands on its skid rather than its battery or camera. It’s a small detail, but it makes a big difference in both aesthetics and functionality.

Final Thoughts on Micro Servos for Retractable Brakes and Skids

Micro servos are one of the most versatile, cost-effective, and reliable actuators available to the hobbyist and professional alike. When used for retractable landing brakes or skids, they bring a level of precision and control that other mechanisms simply cannot match.

Whether you’re building a scale RC aircraft, a custom FPV drone, or an experimental VTOL, the principles covered here will serve you well. Start with a simple direct-drive setup, test thoroughly on the bench, and gradually move to more advanced control schemes as your confidence grows.

The next time you watch your model touch down and smoothly deploy its brakes, you’ll know exactly what went into making that moment possible—and you’ll appreciate the tiny servo working tirelessly behind the scenes.

Copyright Statement:

Author: Micro Servo Motor

Link: https://microservomotor.com/micro-servo-motors-in-drones/micro-servos-retractable-landing-brakes.htm

Source: Micro Servo Motor

The copyright of this article belongs to the author. Reproduction is not allowed without permission.

About Us

Lucas Bennett avatar
Lucas Bennett
Welcome to my blog!

Tags