DC Motor R280 3-12V 13750RPM

  • Wide voltage range – operates from 3V to 12V DC
  • High-speed output – up to 13,750 RPM @ 12V
  • Compact body – ~24mm diameter, ~30mm length
  • Brushed DC motor – simple, efficient, and easy to drive
  • Standard face-mount holes – quick and secure installation
  • Ideal for toys & fans – perfect for hobby and prototyping use
  • Great for robotics & models – reliable performance in small builds
  • Low power and lightweight – excellent for battery-powered projects

Apple Shopping Event

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

50,00 EGP

14 People watching this product now!

Payment Methods:

Description

Description

Compact and efficient R280 DC motor with a voltage range of 3-12V and a maximum speed of 13750 RPM. Perfect for small projects, toys, and hobbyist applications requiring high-speed performance.

Short Features

  • Operates between 3-12V DC
  • Maximum speed of 13750 RPM
  • Lightweight and compact design
  • Suitable for a variety of hobbyist and DIY projects
  • Durable construction for long-lasting use

Specification

  • Model: R280
  • Voltage Range: 3-12V DC
  • Speed: 13750 RPM (at 12V no-load)
  • Current: ~0.5A (no-load at 12V)
  • Torque: Suitable for lightweight applications
  • Dimensions: Compact cylindrical motor (standard R280 size)
  • Material: Metal casing with reliable internal components
  • Applications: Toys, small fans, portable tools, and RC vehicles
🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
Motorto H-bridge OUTmotor leads into an H-bridge driver's output terminals
📟
DC Motor R280 3-12V 13750RPM
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
DC Motor R280 3-12V 13750RPM - Arduino Uno
DC Motor R280 3-12V 13750RPM - Arduino Nano
DC Motor R280 3-12V 13750RPM - Arduino Mega
DC Motor R280 3-12V 13750RPM - ESP32
DC Motor R280 3-12V 13750RPM - ESP8266
DC Motor R280 3-12V 13750RPM - STM32
DC Motor R280 3-12V 13750RPM - Raspberry Pi Pico
📄 File: dc_motor_r280_3-12v_13750rpm_-_arduino_uno.inoArduino Uno
633 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// DC Motor R280 3-12V 13750RPM 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_motor_r280_3-12v_13750rpm_-_arduino_nano.inoArduino Nano
634 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// DC Motor R280 3-12V 13750RPM 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_motor_r280_3-12v_13750rpm_-_arduino_mega.inoArduino Mega
634 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// DC Motor R280 3-12V 13750RPM 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_motor_r280_3-12v_13750rpm_-_esp32.inoESP32
631 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// DC Motor R280 3-12V 13750RPM 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_motor_r280_3-12v_13750rpm_-_esp8266.inoESP8266
633 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// DC Motor R280 3-12V 13750RPM 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_motor_r280_3-12v_13750rpm_-_stm32.inoSTM32
637 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// DC Motor R280 3-12V 13750RPM 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_motor_r280_3-12v_13750rpm_-_raspberry_pi_pico.inoRaspberry Pi Pico
643 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// DC Motor R280 3-12V 13750RPM 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,8 × 2 × 1,5 cm
ModelR280
Operating Voltage3–12 V DC
No-Load Speed13,750 RPM (at 12V)
Rated Current120–300 mA (depends on voltage and load)
Stall Current~1.2 A (typical at 12V)
Shaft TypeRound Metal Shaft
Motor TypeBrushed DC Motor
Torque~10–20 g·cm (depends on load and voltage)
Operating Temperature-10°C to +60°C
Mounting2 Screw Holes for Bracket
ApplicationsSmall Robotics, RC Vehicles, DIY Electronics Projects, Arduino / Raspberry Pi Projects
Package Contents1× R280 DC Motor (3–12V, 13,750 RPM)

Customer Reviews