

The Engine with Gearbox 6 VDC 200rpm is a DC motor with an integrated gearbox designed to operate at 6 volts. It provides a rotational speed of 200 revolutions per minute (rpm), making it suitable for applications requiring moderate torque and speed control. The gearbox reduces the motor's speed while increasing its torque, making 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 V DC |
| No-Load Speed | 200 rpm |
| Gearbox Ratio | Typically 1:30 (varies by model) |
| Stall Torque | ~1.5 kg·cm (approximate) |
| No-Load Current | ~150 mA |
| Stall Current | ~1.2 A |
| Shaft Diameter | 6 mm |
| Shaft Length | 15 mm |
| Motor Dimensions | 37 mm (diameter) x 70 mm (length) |
| Weight | ~150 g |
The motor typically has two terminals for electrical connections:
| Pin | Description |
|---|---|
| + | Positive terminal for power input. |
| - | Negative terminal for power input. |
Note: Reversing the polarity of the terminals will reverse the motor's rotation direction.
Below is an example of how to control the motor using an Arduino UNO and an L298N motor driver:
// Define motor control pins
const int ENA = 9; // PWM pin for speed control
const int IN1 = 8; // Direction control pin 1
const int IN2 = 7; // Direction control pin 2
void setup() {
// Set motor control pins as outputs
pinMode(ENA, OUTPUT);
pinMode(IN1, OUTPUT);
pinMode(IN2, OUTPUT);
}
void loop() {
// Rotate motor forward at 75% speed
analogWrite(ENA, 191); // 75% of 255 (PWM duty cycle)
digitalWrite(IN1, HIGH);
digitalWrite(IN2, LOW);
delay(3000); // Run for 3 seconds
// Stop the motor
analogWrite(ENA, 0);
delay(1000); // Pause for 1 second
// Rotate motor backward at 50% speed
analogWrite(ENA, 127); // 50% of 255 (PWM duty cycle)
digitalWrite(IN1, LOW);
digitalWrite(IN2, HIGH);
delay(3000); // Run for 3 seconds
// Stop the motor
analogWrite(ENA, 0);
delay(1000); // Pause for 1 second
}
Note: Ensure the motor driver is connected to the Arduino and motor correctly. The ENA pin controls speed via PWM, while IN1 and IN2 control the direction.
Motor Does Not Spin
Motor Spins in the Wrong Direction
Motor Overheats
Noisy Operation
Can I use a higher voltage than 6 V?
How do I increase the torque?
Can I control this motor without a motor driver?
This documentation provides all the necessary details to effectively use and troubleshoot the Engine with Gearbox 6 VDC 200rpm.