DC Gear Motor JGA25-370 (130RPM – 12V)

DC Gear Motor JGA25-370 (130RPM – 12V)
1. Model: JGA25-370
2. Operating Voltage: 12V DC
3. No-Load Speed: 130 RPM
4. Gearbox Type: Metal Spur Gear
5. Motor Diameter: 25mm
6. Shaft Type: D-cut (typically 4mm)

Apple Shopping Event

Hurry and get discounts on all Apple devices up to 20%

350,00 EGP

20 People watching this product now!

Payment Methods:

Description

The DC Gear Motor JGA25-370 is a 12V DC motor paired with a metal spur gearbox, producing a no-load output speed of 130 RPM. The gearbox reduces the motor’s high native RPM down to a usable output speed while increasing torque.

The motor housing measures 25mm in diameter, and output is delivered through a D-cut shaft, typically 4mm in diameter, which mates with wheel hubs, couplers, and other D-shaft-compatible mounting hardware without slipping.

Built with metal gears rather than plastic, this motor is aimed at applications needing sustained torque delivery, such as robotics, electric locks, and other DIY motorized mechanisms.

Features:

  1. Model: JGA25-370
  2. Operating voltage: 12V DC
  3. No-load speed: 130 RPM
  4. Metal spur gearbox for durability
  5. 25mm motor diameter, compact form factor
  6. D-cut output shaft (typically 4mm)
  7. Suited for robotics, electric locks, and motorized mechanisms
🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
Motorto H-bridge OUTmotor leads into an H-bridge driver's output terminals
📟
DC Gear Motor JGA25-370 (130RPM - 12V)
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
DC Gear Motor JGA25-370 (130RPM - 12V) - Arduino Uno
DC Gear Motor JGA25-370 (130RPM - 12V) - Arduino Nano
DC Gear Motor JGA25-370 (130RPM - 12V) - Arduino Mega
DC Gear Motor JGA25-370 (130RPM - 12V) - ESP32
DC Gear Motor JGA25-370 (130RPM - 12V) - ESP8266
DC Gear Motor JGA25-370 (130RPM - 12V) - STM32
DC Gear Motor JGA25-370 (130RPM - 12V) - Raspberry Pi Pico
📄 File: dc_gear_motor_jga25-370_(130rpm_-_12v)_-_arduino_uno.inoArduino Uno
643 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// DC Gear Motor JGA25-370 (130RPM - 12V) needs an H-bridge driver (e.g. L298N/L293D/L9110S) between it and the board - a GPIO pin alone can't supply a motor's current. IN1=8, IN2=9, ENA(speed)=10 on Arduino Uno.
6#define IN1 8
7#define IN2 9
8#define ENA 10
9
10void setup() {
11 Serial.begin(115200);
12 pinMode(IN1, OUTPUT);
13 pinMode(IN2, OUTPUT);
14 pinMode(ENA, OUTPUT);
15}
16
17void loop() {
18 digitalWrite(IN1, HIGH); digitalWrite(IN2, LOW);
19 analogWrite(ENA, 200); // run forward at ~78% speed
20 delay(2000);
21 digitalWrite(IN1, LOW); digitalWrite(IN2, LOW); // stop
22 delay(1000);
23}
📄 File: dc_gear_motor_jga25-370_(130rpm_-_12v)_-_arduino_nano.inoArduino Nano
644 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// DC Gear Motor JGA25-370 (130RPM - 12V) needs an H-bridge driver (e.g. L298N/L293D/L9110S) between it and the board - a GPIO pin alone can't supply a motor's current. IN1=8, IN2=9, ENA(speed)=10 on Arduino Nano.
6#define IN1 8
7#define IN2 9
8#define ENA 10
9
10void setup() {
11 Serial.begin(115200);
12 pinMode(IN1, OUTPUT);
13 pinMode(IN2, OUTPUT);
14 pinMode(ENA, OUTPUT);
15}
16
17void loop() {
18 digitalWrite(IN1, HIGH); digitalWrite(IN2, LOW);
19 analogWrite(ENA, 200); // run forward at ~78% speed
20 delay(2000);
21 digitalWrite(IN1, LOW); digitalWrite(IN2, LOW); // stop
22 delay(1000);
23}
📄 File: dc_gear_motor_jga25-370_(130rpm_-_12v)_-_arduino_mega.inoArduino Mega
644 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// DC Gear Motor JGA25-370 (130RPM - 12V) needs an H-bridge driver (e.g. L298N/L293D/L9110S) between it and the board - a GPIO pin alone can't supply a motor's current. IN1=8, IN2=9, ENA(speed)=10 on Arduino Mega.
6#define IN1 8
7#define IN2 9
8#define ENA 10
9
10void setup() {
11 Serial.begin(115200);
12 pinMode(IN1, OUTPUT);
13 pinMode(IN2, OUTPUT);
14 pinMode(ENA, OUTPUT);
15}
16
17void loop() {
18 digitalWrite(IN1, HIGH); digitalWrite(IN2, LOW);
19 analogWrite(ENA, 200); // run forward at ~78% speed
20 delay(2000);
21 digitalWrite(IN1, LOW); digitalWrite(IN2, LOW); // stop
22 delay(1000);
23}
📄 File: dc_gear_motor_jga25-370_(130rpm_-_12v)_-_esp32.inoESP32
641 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// DC Gear Motor JGA25-370 (130RPM - 12V) needs an H-bridge driver (e.g. L298N/L293D/L9110S) between it and the board - a GPIO pin alone can't supply a motor's current. IN1=26, IN2=27, ENA(speed)=25 on ESP32.
6#define IN1 26
7#define IN2 27
8#define ENA 25
9
10void setup() {
11 Serial.begin(115200);
12 pinMode(IN1, OUTPUT);
13 pinMode(IN2, OUTPUT);
14 pinMode(ENA, OUTPUT);
15}
16
17void loop() {
18 digitalWrite(IN1, HIGH); digitalWrite(IN2, LOW);
19 analogWrite(ENA, 200); // run forward at ~78% speed
20 delay(2000);
21 digitalWrite(IN1, LOW); digitalWrite(IN2, LOW); // stop
22 delay(1000);
23}
📄 File: dc_gear_motor_jga25-370_(130rpm_-_12v)_-_esp8266.inoESP8266
643 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// DC Gear Motor JGA25-370 (130RPM - 12V) needs an H-bridge driver (e.g. L298N/L293D/L9110S) between it and the board - a GPIO pin alone can't supply a motor's current. IN1=D5, IN2=D6, ENA(speed)=D7 on ESP8266.
6#define IN1 D5
7#define IN2 D6
8#define ENA D7
9
10void setup() {
11 Serial.begin(115200);
12 pinMode(IN1, OUTPUT);
13 pinMode(IN2, OUTPUT);
14 pinMode(ENA, OUTPUT);
15}
16
17void loop() {
18 digitalWrite(IN1, HIGH); digitalWrite(IN2, LOW);
19 analogWrite(ENA, 200); // run forward at ~78% speed
20 delay(2000);
21 digitalWrite(IN1, LOW); digitalWrite(IN2, LOW); // stop
22 delay(1000);
23}
📄 File: dc_gear_motor_jga25-370_(130rpm_-_12v)_-_stm32.inoSTM32
647 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// DC Gear Motor JGA25-370 (130RPM - 12V) needs an H-bridge driver (e.g. L298N/L293D/L9110S) between it and the board - a GPIO pin alone can't supply a motor's current. IN1=PB0, IN2=PB1, ENA(speed)=PA8 on STM32.
6#define IN1 PB0
7#define IN2 PB1
8#define ENA PA8
9
10void setup() {
11 Serial.begin(115200);
12 pinMode(IN1, OUTPUT);
13 pinMode(IN2, OUTPUT);
14 pinMode(ENA, OUTPUT);
15}
16
17void loop() {
18 digitalWrite(IN1, HIGH); digitalWrite(IN2, LOW);
19 analogWrite(ENA, 200); // run forward at ~78% speed
20 delay(2000);
21 digitalWrite(IN1, LOW); digitalWrite(IN2, LOW); // stop
22 delay(1000);
23}
📄 File: dc_gear_motor_jga25-370_(130rpm_-_12v)_-_raspberry_pi_pico.inoRaspberry Pi Pico
653 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// DC Gear Motor JGA25-370 (130RPM - 12V) needs an H-bridge driver (e.g. L298N/L293D/L9110S) between it and the board - a GPIO pin alone can't supply a motor's current. IN1=14, IN2=15, ENA(speed)=16 on Raspberry Pi Pico.
6#define IN1 14
7#define IN2 15
8#define ENA 16
9
10void setup() {
11 Serial.begin(115200);
12 pinMode(IN1, OUTPUT);
13 pinMode(IN2, OUTPUT);
14 pinMode(ENA, OUTPUT);
15}
16
17void loop() {
18 digitalWrite(IN1, HIGH); digitalWrite(IN2, LOW);
19 analogWrite(ENA, 200); // run forward at ~78% speed
20 delay(2000);
21 digitalWrite(IN1, LOW); digitalWrite(IN2, LOW); // stop
22 delay(1000);
23}
Bare DC motor - needs an H-bridge driver module (L298N/L293D/L9110S) wired between it and the microcontroller.

نظرة عامة ومواصفات المنتج — بالعربية

DC Gear Motor JGA25-370 (130RPM - 12V) متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم DC Motor with Gearbox وMotors | Drivers | Pumps | Actuators، بسعر 350,00 EGP. كود المنتج لدينا: EK1997. المنتج متوفر في المخزون وجاهز للشحن الفوري لكل محافظات مصر مع إمكانية الدفع عند الاستلام.

أهم المواصفات الفنية:

  • الموديل: JGA25-370
  • Operating Voltage: 12V DC
  • No Load Speed: 130 RPM
  • Gearbox Type: Spur Gear (Metal Gears)
  • Motor Diameter: 25mm
  • Shaft Type: D-cut (typically 4mm diameter)
  • الوزن: 4 g

منتج أصلي بجودة مضمونة من إكوسترا، مع دعم فني ومتابعة بعد البيع لكل عملائنا في مصر.

تصفّح المزيد من DC Motor with Gearbox في إكوسترا.

Specification

Specification

WeightWeight40 g
Dimensions4 × 3 × 3 cm
ModelJGA25-370
Operating Voltage12V DC
No-Load Speed130 RPM
Gearbox TypeSpur Gear (Metal Gears)
Motor Diameter25mm
Shaft TypeD-cut (typically 4mm diameter)

Customer Reviews