The มอเตอร์เกียร์ DC 12V 27 RPM is a 12-volt DC gear motor designed to deliver high torque at low speeds, with a rotational speed of 27 revolutions per minute (RPM). This motor is ideal for applications requiring precise and powerful motion control, such as robotics, conveyor systems, and automated mechanisms. Its robust design and reliable performance make it a popular choice for hobbyists and professionals alike.
Below are the key technical details of the มอเตอร์เกียร์ DC 12V 27 RPM:
Parameter | Value |
---|---|
Operating Voltage | 12V DC |
No-Load Speed | 27 RPM |
Torque | High (varies by load) |
Current (No Load) | ~200 mA |
Current (Stall) | ~1.2 A |
Gear Ratio | ~1:200 |
Shaft Diameter | 6 mm |
Shaft Length | 15 mm |
Motor Dimensions | 37 mm (diameter) x 70 mm (length) |
Weight | ~200 g |
The motor typically has two terminals for electrical connections:
Pin/Terminal | Description |
---|---|
Terminal 1 | Positive terminal (+12V DC) |
Terminal 2 | Negative terminal (Ground or -12V DC) |
Note: Reversing the polarity of the terminals will reverse the motor's rotation direction.
Below is an example of how to control the motor's speed and direction using an Arduino UNO and an L298N motor driver.
// Define motor control pins
const int IN1 = 7; // Motor direction pin 1
const int IN2 = 8; // Motor direction pin 2
const int ENA = 9; // Motor speed control (PWM pin)
void setup() {
// Set motor control pins as outputs
pinMode(IN1, OUTPUT);
pinMode(IN2, OUTPUT);
pinMode(ENA, OUTPUT);
}
void loop() {
// Rotate motor forward at 50% speed
digitalWrite(IN1, HIGH); // Set direction
digitalWrite(IN2, LOW);
analogWrite(ENA, 128); // Set speed (0-255)
delay(5000); // Run for 5 seconds
// Rotate motor backward at 75% speed
digitalWrite(IN1, LOW); // Reverse direction
digitalWrite(IN2, HIGH);
analogWrite(ENA, 192); // Set speed (0-255)
delay(5000); // Run for 5 seconds
// Stop the motor
digitalWrite(IN1, LOW);
digitalWrite(IN2, LOW);
analogWrite(ENA, 0); // Set speed to 0
delay(2000); // Wait for 2 seconds before repeating
}
Motor Does Not Spin
Motor Spins in the Wrong Direction
Motor Overheats
Electrical Noise Interference
This concludes the documentation for the มอเตอร์เกียร์ DC 12V 27 RPM.