RP360-ST-15250 DC Motor 12V 6260RPM

  • Rated for 12V DC – efficient for standard power supplies
  • High-speed: 6260 RPM (no load) – ideal for fast-rotating tasks
  • Compact design – ~15mm diameter fits tight enclosures
  • Brushed DC motor – simple and reliable operation
  • Face-mount holes – easy to install in various projects
  • Low no-load current – ~<200mA for efficient operation
  • Perfect for robotics & DIY – use in toys, pumps, fans, and gadgets
  • Durable construction – made for continuous use

Apple Shopping Event

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

100,00 EGP

8 People watching this product now!

Payment Methods:

Description

Description

High-performance RP360-ST-15250 DC motor, operating at 12V with a speed of 6260 RPM. Designed for precision and efficiency in various applications such as robotics, automation, and DIY projects.

Short Features

  • Operates at 12V DC
  • 6260 RPM speed for high efficiency
  • Compact and robust design
  • Reliable performance in various conditions
  • Ideal for robotics, automation, and DIY use

Specification

  • Model: RP360-ST-15250
  • Voltage: 12V DC
  • Speed: 6260 RPM
  • Current Rating: Approximately 2A (no-load)
  • Torque: High efficiency under load
  • Dimensions: Compact cylindrical design
  • Material: Metal housing with durable internal components
  • Applications: Robotics, small machinery, automotive systems, and prototyping
 
🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
Motorto H-bridge OUTmotor leads into an H-bridge driver's output terminals
📟
RP360-ST-15250 DC Motor 12V 6260RPM
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
RP360-ST-15250 DC Motor 12V 6260RPM - Arduino Uno
RP360-ST-15250 DC Motor 12V 6260RPM - Arduino Nano
RP360-ST-15250 DC Motor 12V 6260RPM - Arduino Mega
RP360-ST-15250 DC Motor 12V 6260RPM - ESP32
RP360-ST-15250 DC Motor 12V 6260RPM - ESP8266
RP360-ST-15250 DC Motor 12V 6260RPM - STM32
RP360-ST-15250 DC Motor 12V 6260RPM - Raspberry Pi Pico
📄 File: rp360-st-15250_dc_motor_12v_6260rpm_-_arduino_uno.inoArduino Uno
640 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RP360-ST-15250 DC Motor 12V 6260RPM 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: rp360-st-15250_dc_motor_12v_6260rpm_-_arduino_nano.inoArduino Nano
641 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RP360-ST-15250 DC Motor 12V 6260RPM 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: rp360-st-15250_dc_motor_12v_6260rpm_-_arduino_mega.inoArduino Mega
641 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RP360-ST-15250 DC Motor 12V 6260RPM 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: rp360-st-15250_dc_motor_12v_6260rpm_-_esp32.inoESP32
638 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RP360-ST-15250 DC Motor 12V 6260RPM 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: rp360-st-15250_dc_motor_12v_6260rpm_-_esp8266.inoESP8266
640 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RP360-ST-15250 DC Motor 12V 6260RPM 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: rp360-st-15250_dc_motor_12v_6260rpm_-_stm32.inoSTM32
644 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RP360-ST-15250 DC Motor 12V 6260RPM 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: rp360-st-15250_dc_motor_12v_6260rpm_-_raspberry_pi_pico.inoRaspberry Pi Pico
650 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RP360-ST-15250 DC Motor 12V 6260RPM 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.

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

RP360-ST-15250 DC Motor 12V 6260RPM متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم DC Motor وMotors | Drivers | Pumps | Actuators، بسعر 100,00 EGP. كود المنتج لدينا: EK1702. المنتج متوفر في المخزون وجاهز للشحن الفوري لكل محافظات مصر مع إمكانية الدفع عند الاستلام.

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

  • الموديل: RP360-ST-15250
  • Operating Voltage: 12 V DC
  • No Load Speed: 6,260 RPM
  • Rated Current: 180–350 mA (depends on load)
  • Stall Current: ~1.5 A (typical at 12V)
  • Motor Type: Brushed DC Motor
  • Shaft Type: Round Metal Shaft
  • Torque: ~40–60 g·cm (depends on load)

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

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

Specification

Specification

WeightWeight40 g
Dimensions3,6 × 2,5 × 2 cm
ModelRP360-ST-15250
Operating Voltage12 V DC
No-Load Speed6,260 RPM
Rated Current180–350 mA (depends on load)
Stall Current~1.5 A (typical at 12V)
Motor TypeBrushed DC Motor
Shaft TypeRound Metal Shaft
Torque~40–60 g·cm (depends on load)
Operating Temperature-10°C to +60°C
Mounting2 Screw Holes for Bracket
ApplicationsRobotics, DIY Electronics, RC Vehicles, Arduino / Raspberry Pi Projects
Package Contents1× RP360-ST-15250 DC Motor (12V, 6,260 RPM)

Customer Reviews