

The Dagu RS001B 9g Servo is a compact and lightweight servo motor designed for precise angular movement. Weighing only 9 grams, this servo is ideal for applications where size and weight are critical. It is commonly used in robotics, RC vehicles, and hobby projects to control the position of mechanical components such as arms, wheels, or sensors. Its ease of use and compatibility with microcontrollers like Arduino make it a popular choice for beginners and professionals alike.








Below are the key technical details of the Dagu RS001B 9g Servo:
| Parameter | Value |
|---|---|
| Manufacturer | Dagu |
| Part ID | RS001B |
| Weight | 9 grams |
| Operating Voltage | 4.8V to 6.0V |
| Stall Torque | 1.6 kg·cm (at 4.8V) |
| Operating Speed | 0.12 sec/60° (at 4.8V) |
| Control Signal | PWM (Pulse Width Modulation) |
| PWM Pulse Range | 500 µs to 2500 µs |
| Angle Range | 0° to 180° |
| Connector Type | 3-pin female header |
| Dimensions | 22.2 x 11.8 x 31 mm |
The Dagu RS001B servo has a 3-pin connector with the following pinout:
| Pin | Wire Color | Function |
|---|---|---|
| 1 | Brown | Ground (GND) |
| 2 | Red | Power (VCC, 4.8V to 6.0V) |
| 3 | Orange | Signal (PWM Input) |
The Dagu RS001B servo can be controlled using the Arduino Servo library. Below is an example code snippet to rotate the servo between 0° and 180°:
#include <Servo.h> // Include the Servo library
Servo myServo; // Create a Servo object
void setup() {
myServo.attach(9); // Attach the servo to pin 9
}
void loop() {
myServo.write(0); // Move servo to 0 degrees
delay(1000); // Wait for 1 second
myServo.write(90); // Move servo to 90 degrees
delay(1000); // Wait for 1 second
myServo.write(180); // Move servo to 180 degrees
delay(1000); // Wait for 1 second
}
Servo Not Moving:
Erratic Movement:
Overheating:
Servo Jitters When Idle:
Q: Can I power the servo directly from the Arduino?
A: Yes, but only if you are using a single servo and the Arduino's 5V pin can supply sufficient current. For multiple servos, use an external power supply.
Q: What is the maximum angle the servo can rotate?
A: The Dagu RS001B servo can rotate up to 180°.
Q: Can I use this servo with a Raspberry Pi?
A: Yes, but you will need to generate a PWM signal using a library like RPi.GPIO or an external PWM controller.
Q: How do I mount the servo?
A: The servo comes with mounting hardware, including screws and servo horns, which can be attached to your project.
By following this documentation, you can effectively integrate the Dagu RS001B 9g Servo into your projects and troubleshoot common issues with ease.