

A servo motor is a compact and versatile electromechanical device designed for precise angular positioning. The Servo (G/V/PWM) model can be controlled using General (G), Voltage (V), or Pulse Width Modulation (PWM) signals, making it suitable for a wide range of applications. It is widely used in robotics, automation systems, RC vehicles, and other projects requiring accurate rotational control.








| Parameter | Value |
|---|---|
| Operating Voltage | 4.8V to 6.0V |
| Stall Torque | 1.8 kg·cm (4.8V) / 2.2 kg·cm (6.0V) |
| Operating Speed | 0.12 sec/60° (4.8V) / 0.10 sec/60° (6.0V) |
| Control Signal | PWM (Pulse Width Modulation) |
| PWM Pulse Range | 500 µs to 2500 µs |
| Angle Range | 0° to 180° |
| Idle Current | 10 mA |
| Maximum Current | 1.5 A |
| Dimensions | 40 mm x 20 mm x 36 mm |
| Weight | 45 g |
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | GND | Ground connection for the servo motor |
| 2 | VCC | Power supply input (4.8V to 6.0V) |
| 3 | PWM Signal | Control signal input for angular positioning |
#include <Servo.h> // Include the Servo library
Servo myServo; // Create a Servo object to control the servo motor
void setup() {
myServo.attach(9); // Attach the servo to pin 9 on the Arduino UNO
}
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
delay(1000); // Wait for 1 second
myServo.write(180); // Move the servo to 180 degrees
delay(1000); // Wait for 1 second
}
Servo Not Moving:
Servo Jitters or Vibrations:
Servo Overheating:
Limited Range of Motion:
Q: Can I power the servo directly from the Arduino UNO?
A: While possible, it is not recommended for high-current applications. Use an external power source for better performance.
Q: What happens if I send a PWM signal outside the specified range?
A: The servo may not respond correctly or could attempt to move beyond its physical limits, potentially causing damage.
Q: Can I control multiple servos with one Arduino?
A: Yes, you can control multiple servos using different PWM-capable pins, but ensure the power supply can handle the combined current draw.
By following this documentation, you can effectively integrate and troubleshoot the Servo (G/V/PWM) in your projects.