MG90S Micro Servo Full Metal Gear 180 Degree
MG90S Micro Servo Motor – Full Metal Gear (180°)
The MG90S is a compact and high-performance micro servo with durable full metal gears, designed for applications requiring precise control in tight spaces. With high torque output and improved gear strength over plastic alternatives, it is ideal for robotics, RC models, and Arduino projects.
Features
Full metal gear construction for durability and high torque handling
180° rotation for a wide range of motion
Fast response time with precise angle control
Lightweight and compact design
Compatible with most servo libraries and microcontrollers
Specifications
Parameter | Value |
---|---|
Operating Voltage | 4.8V to 6V |
Torque @ 4.8V | 1.8 kg·cm |
Torque @ 6V | 2.2 – 2.5 kg·cm |
Speed @ 4.8V | 0.1s/60° |
Speed @ 6V | 0.08s/60° |
Gear Type | Full Metal |
Weight | ~13.5g |
Dimensions | 22.8 x 12.2 x 28.5 mm |
Rotation Angle | 0° to 180° |
Motor Type | Coreless DC Motor |
Control Signal | PWM (1ms–2ms) |
Connector | 3-pin (VCC, GND, Signal) |
Arduino Wiring Guide
MG90S Pin | Description | Arduino Pin |
---|---|---|
Brown | GND | GND |
Red | VCC (5V) | 5V |
Orange | Signal | D9 (PWM) |
Sample Arduino Code
CopyEdit#include <Servo.h> Servo myServo; void setup() { myServo.attach(9); myServo.write(90); // Set to center position } void loop() { myServo.write(0); // Move to 0° delay(1000); myServo.write(180); // Move to 180° delay(1000); }
This code uses the built-in Servo library. It sweeps the servo from 0 to 180 degrees.
Applications
Arduino-controlled pan/tilt systems
Small robotic arms and legs
RC airplanes, cars, and boats
Animatronics and motion control setups
Precise angular movement in compact builds