

The Engine with Gearbox 6 VDC 200RPM is a compact and efficient DC motor equipped with a built-in gearbox. This combination allows the motor to deliver high torque at a reduced speed of 200 revolutions per minute (RPM). The motor operates at a nominal voltage of 6 volts DC, making it suitable for a wide range of low-power applications. Its robust design and reliable performance make it ideal for robotics, small machinery, and hobbyist projects.








Below are the key technical details of the Engine with Gearbox 6 VDC 200RPM:
| Parameter | Value |
|---|---|
| Operating Voltage | 6 VDC |
| No-Load Speed | 200 RPM |
| Gearbox Ratio | 1:30 |
| Stall Torque | ~2.5 kg·cm |
| No-Load Current | ~120 mA |
| Stall Current | ~1.2 A |
| Shaft Diameter | 6 mm |
| Shaft Length | 15 mm |
| Motor Dimensions | 70 mm x 30 mm x 25 mm |
| Weight | ~100 g |
The motor typically has two terminals for electrical connections:
| Pin | Description |
|---|---|
| + | Positive terminal (connect to VCC) |
| - | Negative terminal (connect to GND) |
Below is an example of controlling the motor using an Arduino UNO and an L298N motor driver:
// Define motor control pins
const int motorPin1 = 5; // IN1 on L298N
const int motorPin2 = 6; // IN2 on L298N
const int enablePin = 9; // ENA on L298N (PWM control)
void setup() {
// Set motor pins as outputs
pinMode(motorPin1, OUTPUT);
pinMode(motorPin2, OUTPUT);
pinMode(enablePin, OUTPUT);
}
void loop() {
// Rotate motor in one direction
digitalWrite(motorPin1, HIGH); // Set IN1 high
digitalWrite(motorPin2, LOW); // Set IN2 low
analogWrite(enablePin, 128); // Set speed (0-255)
delay(2000); // Run for 2 seconds
// Stop the motor
digitalWrite(motorPin1, LOW);
digitalWrite(motorPin2, LOW);
delay(1000); // Pause for 1 second
// Rotate motor in the opposite direction
digitalWrite(motorPin1, LOW); // Set IN1 low
digitalWrite(motorPin2, HIGH); // Set IN2 high
analogWrite(enablePin, 128); // Set speed (0-255)
delay(2000); // Run for 2 seconds
// Stop the motor
digitalWrite(motorPin1, LOW);
digitalWrite(motorPin2, LOW);
delay(1000); // Pause for 1 second
}
analogWrite value to control the motor speed (0 = stop, 255 = full speed).Motor Not Spinning
Motor Spins in the Wrong Direction
Motor Overheats
Noisy Operation
This concludes the documentation for the Engine with Gearbox 6 VDC 200RPM. Follow the guidelines above for optimal performance and longevity of the component.