- Stock: 34
- Model: Servo-180º
Type:
180°
360°
MG90S-type micro servo with a nominal 180° positioning range, metal gears and a compact body. It is designed to move and hold a mechanism at an angular position, such as a gate, steering linkage, gripper, selector or adjustable mount.
Unlike a continuous-rotation servo, this version uses internal feedback to seek the requested position. Usable travel and actual endpoints may vary slightly between units, so start from centre and expand motion gradually without forcing the mechanical stops.
Main features
- Nominal 180° positioning: the signal represents an angular setpoint, not continuous-rotation speed.
- Position holding: internal electronics correct movement while power and signal are present.
- Metal gears: provide greater wear resistance than an entirely plastic gear train.
- Micro format: suitable for robotics, radio control, compact automation and auxiliary 3D-printer mechanisms.
- Included accessories: three plastic horns and mounting hardware.
| Feature | Declared value |
|---|---|
| Type | Positional micro servo |
| Nominal travel | 180°; usable travel must be calibrated without forcing the stops |
| Gears | Metal |
| Reference supply | 4.8V; a regulated 5V supply may be used for commissioning |
| Declared stall torque | 2.0kgf·cm at 4.8V; this is not a continuous working-torque rating |
| Declared speed | 0.11s/60° at 4.8V, no load |
| Declared dimensions | 22.8 × 12.2 × 28.5mm |
| Weight | 13.4g |
| Lead | Approximately 22cm |
| Declared dead band | 5µs |
| Declared temperature range | 0-55°C |
Requested position and actual position
A 90° command represents nominal centre, but the external controller does not receive a measurement of physical position. If the mechanism is jammed, overloaded or reaches a stop, the servo may not reach its setpoint even though the program has sent it.
Start with a conservative interval, such as 20° to 160°, and expand it slowly only when the assembly allows it. Loud buzzing, vibration at an endpoint or rapid temperature rise indicate that travel or load should be reduced.
Safe power and wiring
- Use a regulated 5V supply able to handle start-up and stall peaks.
- Do not connect it directly to 12V or 24V and do not power it from a signal pin.
- When using an external supply, join its ground to the controller ground.
- The usual convention is brown or black for GND, red for positive and orange, yellow or white for signal. Always check connector order.
- Do not use the servo as a safety component or keep its horn forced against a stop.
Arduino example
The official Arduino Servo library can send an angular setpoint. This example begins at centre:
#include <Servo.h>
Servo mechanism;
void setup() {
mechanism.attach(9);
mechanism.write(90); // nominal centre
}
void loop() {
// First test a reduced range, for example 20°-160°.
}
The library's read() function returns the last requested setpoint, not a shaft measurement. Add an external sensor or verification system when actual position is critical.
Using it with 3D-printer firmware
- Marlin: enable at least one servo through
NUM_SERVOS, verify the board pin and begin withM280 P0 S90. Indices start at zero. - Klipper: define
[servo name]with the correct pin.SET_SERVO SERVO=name ANGLE=90commands nominal centre. Pulse limits must be calibrated without forcing the mechanism. - RepRapFirmware 3: create the output with
M950 S0 C"pin_name"and useM280 P0 S90. Pin naming is board-specific and the exact pulse-to-angle relationship is not universal.
It can deploy a mechanical probe, operate a gate, select a path or move a small auxiliary mechanism, provided the design respects available travel, load, power and space.
Choose it if…
- You need to move a light mechanism to repeatable angular positions.
- You want a compact metal-gear micro servo for robotics or automation.
- You can calibrate actual travel and provide a suitable 5V supply.
Do not choose it if…
- You need sustained rotation: choose the 360° continuous-rotation MG90S micro servo.
- You need the controller to confirm physical position without adding sensors.
- The application requires high continuous torque, water resistance, certified accuracy or a safety function.
Package contents: 1 positional micro servo, 3 plastic horns and mounting hardware.