

The Moteur 25GA370 12V is a compact and efficient 12V DC motor designed for a wide range of applications. Its small size and high torque output make it ideal for use in robotics, small machinery, and automation systems. This motor is particularly valued for its reliability, durability, and smooth operation, even under demanding conditions.








Below are the key technical details of the Moteur 25GA370 12V:
| Parameter | Value |
|---|---|
| Operating Voltage | 12V DC |
| No-Load Speed | ~6000 RPM |
| Rated Torque | ~0.5 kg.cm |
| Stall Torque | ~2.5 kg.cm |
| No-Load Current | ~70 mA |
| Stall Current | ~2.5 A |
| Gearbox Ratio | 1:30 (varies by model) |
| Shaft Diameter | 4 mm |
| Motor Dimensions | 25 mm (diameter) x 37 mm (length) |
| Weight | ~100 g |
The Moteur 25GA370 12V typically has two terminals for electrical connections:
| Pin | Description |
|---|---|
| Pin 1 | Positive terminal (+12V input) |
| Pin 2 | Negative terminal (Ground) |
Note: The motor's direction of rotation can be reversed by swapping the polarity of the connections.
Below is an example of how to control the Moteur 25GA370 12V using an Arduino UNO and an L298N motor driver:
// Example: Controlling Moteur 25GA370 12V with Arduino and L298N
// Define motor control pins
const int IN1 = 9; // L298N IN1 pin
const int IN2 = 8; // L298N IN2 pin
const int ENA = 10; // L298N ENA pin (PWM for speed control)
void setup() {
// Set motor control pins as outputs
pinMode(IN1, OUTPUT);
pinMode(IN2, OUTPUT);
pinMode(ENA, OUTPUT);
}
void loop() {
// Rotate motor forward
digitalWrite(IN1, HIGH); // Set IN1 high
digitalWrite(IN2, LOW); // Set IN2 low
analogWrite(ENA, 150); // Set speed (0-255)
delay(3000); // Run motor for 3 seconds
// Rotate motor backward
digitalWrite(IN1, LOW); // Set IN1 low
digitalWrite(IN2, HIGH); // Set IN2 high
analogWrite(ENA, 150); // Set speed (0-255)
delay(3000); // Run motor for 3 seconds
// Stop motor
digitalWrite(IN1, LOW); // Set IN1 low
digitalWrite(IN2, LOW); // Set IN2 low
analogWrite(ENA, 0); // Set speed to 0
delay(3000); // Wait for 3 seconds before repeating
}
Note: Adjust the analogWrite value to control the motor speed. A value of 0 stops the motor, while 255 runs it at full speed.
Motor Does Not Spin
Motor Spins in the Wrong Direction
Motor Overheats
Electrical Noise Interference
Motor Vibrates Excessively
Can I use a lower voltage to power the motor?
What is the maximum load the motor can handle?
Can I control the motor without a motor driver?
Is the motor waterproof?
By following this documentation, you can effectively integrate the Moteur 25GA370 12V into your projects and ensure optimal performance.