

The Engine with Gearbox 6VDC 200RPM Side is a compact and efficient DC motor equipped with a built-in gearbox. The gearbox reduces the motor's speed to 200 revolutions per minute (RPM), significantly increasing torque output. This makes it ideal for applications requiring precise, low-speed, high-torque motion. The motor operates at 6V DC, making it compatible with a wide range of power sources, including batteries and microcontroller-based systems.








Below are the key technical details of the Engine with Gearbox 6VDC 200RPM Side:
| Parameter | Value |
|---|---|
| Operating Voltage | 6V DC |
| 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 |
| Motor Dimensions | 70 mm x 30 mm x 25 mm |
| Weight | ~100 g |
The motor has two terminals for electrical connections:
| Pin | Description |
|---|---|
| + | Positive terminal for 6V DC input |
| - | Negative terminal (ground) for 6V DC |
Below is an example of how to control the motor using an Arduino UNO and an L298N motor driver:
// Example: Controlling a 6V DC motor with Arduino and L298N motor driver
// Define motor control pins
const int motorPin1 = 9; // IN1 on L298N
const int motorPin2 = 10; // IN2 on L298N
const int enablePin = 11; // ENA on L298N (PWM control)
void setup() {
// Set motor control pins as outputs
pinMode(motorPin1, OUTPUT);
pinMode(motorPin2, OUTPUT);
pinMode(enablePin, OUTPUT);
}
void loop() {
// Rotate motor forward
digitalWrite(motorPin1, HIGH); // Set IN1 high
digitalWrite(motorPin2, LOW); // Set IN2 low
analogWrite(enablePin, 128); // Set speed (0-255, 128 = ~50% speed)
delay(2000); // Run for 2 seconds
// Stop motor
analogWrite(enablePin, 0); // Set speed to 0
delay(1000); // Wait for 1 second
// Rotate motor backward
digitalWrite(motorPin1, LOW); // Set IN1 low
digitalWrite(motorPin2, HIGH); // Set IN2 high
analogWrite(enablePin, 128); // Set speed (0-255, 128 = ~50% speed)
delay(2000); // Run for 2 seconds
// Stop motor
analogWrite(enablePin, 0); // Set speed to 0
delay(1000); // Wait for 1 second
}
Motor Does Not Spin:
Motor Spins in the Wrong Direction:
Motor Overheats:
Excessive Noise or Vibration:
Can I use a higher voltage than 6V?
What is the maximum weight the motor can handle?
Can I control the speed without a motor driver?
Is the motor waterproof?