JGA25-370-12V-250RPM 8.8Kg.cm DC motor Gear box

  • โš™๏ธ JGA25-370 DC geared motor with gearbox
  • โšก 12VDC operation for robotics and automation projects
  • ๐Ÿš€ Output speed: 250 RPM (geared)
  • ๐Ÿ’ช High torque: 8.8 kgยทcm for heavy-load applications
  • ๐Ÿค– Ideal for robot cars, smart mechanisms, and conveyors
  • ๐Ÿ” Smooth, stable rotation with gear reduction
  • ๐Ÿ› ๏ธ Easy to drive using H-bridge motor drivers
  • โœ… Great choice for strong compact motion systems

Apple Shopping Event

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

400,00 EGP

18 People watching this product now!

Payment Methods:

400,00 EGP
200,00 EGP
600,00 EGP
For 2 items

Description

ย 
๐Ÿ”Œ
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
Motorto H-bridge OUTmotor leads into an H-bridge driver's output terminals
๐Ÿ“Ÿ
JGA25-370-12V-250RPM 8.8Kg.cm DC motor Gear box
7 Examples โ€ข C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
JGA25-370-12V-250RPM 8.8Kg.cm DC motor Gear box - Arduino Uno
JGA25-370-12V-250RPM 8.8Kg.cm DC motor Gear box - Arduino Nano
JGA25-370-12V-250RPM 8.8Kg.cm DC motor Gear box - Arduino Mega
JGA25-370-12V-250RPM 8.8Kg.cm DC motor Gear box - ESP32
JGA25-370-12V-250RPM 8.8Kg.cm DC motor Gear box - ESP8266
JGA25-370-12V-250RPM 8.8Kg.cm DC motor Gear box - STM32
JGA25-370-12V-250RPM 8.8Kg.cm DC motor Gear box - Raspberry Pi Pico
๐Ÿ“„ File: jga25-370-12v-250rpm_8.8kg.cm_dc_motor_gear_box_-_arduino_uno.inoArduino Uno
652 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// JGA25-370-12V-250RPM 8.8Kg.cm DC motor Gear box 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: jga25-370-12v-250rpm_8.8kg.cm_dc_motor_gear_box_-_arduino_nano.inoArduino Nano
653 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// JGA25-370-12V-250RPM 8.8Kg.cm DC motor Gear box 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: jga25-370-12v-250rpm_8.8kg.cm_dc_motor_gear_box_-_arduino_mega.inoArduino Mega
653 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// JGA25-370-12V-250RPM 8.8Kg.cm DC motor Gear box 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: jga25-370-12v-250rpm_8.8kg.cm_dc_motor_gear_box_-_esp32.inoESP32
650 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// JGA25-370-12V-250RPM 8.8Kg.cm DC motor Gear box 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: jga25-370-12v-250rpm_8.8kg.cm_dc_motor_gear_box_-_esp8266.inoESP8266
652 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// JGA25-370-12V-250RPM 8.8Kg.cm DC motor Gear box 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: jga25-370-12v-250rpm_8.8kg.cm_dc_motor_gear_box_-_stm32.inoSTM32
656 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// JGA25-370-12V-250RPM 8.8Kg.cm DC motor Gear box 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: jga25-370-12v-250rpm_8.8kg.cm_dc_motor_gear_box_-_raspberry_pi_pico.inoRaspberry Pi Pico
662 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// JGA25-370-12V-250RPM 8.8Kg.cm DC motor Gear box 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.

Specification

Specification

WeightWeight40 g
Dimensions2,5 × 2,5 × 4,7 cm
Product NameJGA25-370-12V-250RPM DC Gear Motor
Operating Voltage12V DC
Speed250 RPM
Torque8.8 kg.cm
Motor TypeBrushed DC Gear Motor
Gearbox TypeMetal Gearbox
Shaft Diameter4mm (D-shaft)
Shaft Length10mm
Motor Body Diameter25mm
Motor Length (without shaft)37mm
Stall Current1.2A
No-Load Current150mA
UsageRobotics, automation, DIY projects

Customer Reviews