

The Dagu RS001B 9g Servo is a compact and lightweight servo motor designed for applications requiring precise control of angular position. Manufactured by Dagu, this servo is widely used in robotics, RC vehicles, and hobby projects due to its small size, low weight, and reliable performance. It is ideal for projects where space and weight constraints are critical.








Below are the key technical details of the Dagu RS001B 9g Servo:
| Parameter | Value |
|---|---|
| Manufacturer | Dagu |
| Part ID | RS001B |
| 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) |
| Weight | 9g |
| Dimensions | 22.5mm x 11.5mm x 24.6mm |
| Control Signal | PWM (Pulse Width Modulation) |
| PWM Pulse Range | 500µs to 2500µs |
| Rotation Angle | 0° to 180° |
| Connector Type | 3-pin female header |
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 control input) |
The Dagu RS001B servo can be controlled using the Arduino Servo library. Below is an example code snippet to control the servo:
#include <Servo.h> // Include the Servo library
Servo myServo; // Create a Servo object to control the servo
void setup() {
myServo.attach(9); // Attach the servo to digital pin 9
}
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 Jittering
Servo Overheating
Limited Rotation
Q: Can I use the Dagu RS001B servo with a 3.3V microcontroller?
A: Yes, but you must provide a separate 5V to 6V power supply for the servo. Ensure the PWM signal from the microcontroller is compatible with the servo's input.
Q: How many servos can I control with an Arduino UNO?
A: The Arduino UNO can control up to 12 servos using the Servo library, but ensure your power supply can handle the total current draw.
Q: Can the servo rotate continuously?
A: No, the Dagu RS001B is a standard servo with a rotation range of 0° to 180°. For continuous rotation, use a continuous rotation servo.
Q: What is the lifespan of the servo?
A: The lifespan depends on usage conditions, but proper handling (e.g., avoiding overloads and overheating) can significantly extend its life.
This concludes the documentation for the Dagu RS001B 9g Servo.