

The Tower Pro MG995 DIGI HI-SPEED Servo Motor is a high-torque digital servo motor designed for applications requiring precise control and durability. Its metal gear train ensures long-lasting performance, even under high-stress conditions. This servo motor is widely used in robotics, remote-controlled (RC) vehicles, drones, and other hobbyist projects. With its fast response time and high torque output, the MG995 is ideal for tasks such as steering mechanisms, robotic arms, and pan-tilt camera systems.








Below are the key technical details of the Tower Pro MG995 Servo Motor:
| Specification | Value |
|---|---|
| Operating Voltage | 4.8V to 7.2V |
| Stall Torque | 9.4 kg·cm (4.8V), 11 kg·cm (6V) |
| Operating Speed | 0.20 sec/60° (4.8V), 0.16 sec/60° (6V) |
| Gear Type | Metal |
| Control Signal | PWM (Pulse Width Modulation) |
| PWM Pulse Range | 500 µs to 2500 µs |
| Weight | 55g |
| Dimensions | 40.7mm x 19.7mm x 42.9mm |
| Connector Type | 3-pin female header (Futaba style) |
The MG995 servo motor has a 3-pin connector with the following pinout:
| Pin | Wire Color | Description |
|---|---|---|
| 1 | Brown | Ground (GND) |
| 2 | Red | Power Supply (VCC) |
| 3 | Orange | Signal (PWM input) |
Below is an example of how to control the MG995 servo motor using an Arduino UNO:
#include <Servo.h> // Include the Servo library
Servo myServo; // Create a Servo object to control the MG995
void setup() {
myServo.attach(9); // Attach the servo to pin 9 on the Arduino
}
void loop() {
myServo.write(0); // Move the servo to 0 degrees
delay(1000); // Wait for 1 second
myServo.write(90); // Move the servo to 90 degrees (neutral position)
delay(1000); // Wait for 1 second
myServo.write(180); // Move the servo to 180 degrees
delay(1000); // Wait for 1 second
}
Note: Ensure the servo is connected to an external power source if it draws more current than the Arduino can supply.
Servo Not Moving:
Erratic Movements:
Overheating:
Limited Rotation:
Q: Can the MG995 be used for continuous rotation?
Q: What is the maximum current draw of the MG995?
Q: Can I control the MG995 with a Raspberry Pi?
Q: How do I calibrate the neutral position of the servo?
By following this documentation, you can effectively integrate the Tower Pro MG995 DIGI HI-SPEED Servo Motor into your projects.