High Speed Micro DC Motor

High Speed Micro DC Motor
1. Type: Brushed DC motor
2. Size: Micro/compact form factor
3. Speed: High-speed rotary output
4. Drive: Direct DC, 2-wire

Apple Shopping Event

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

25,00 EGP

11 People watching this product now!

Payment Methods:

Description

This high-speed micro DC motor is a compact brushed motor designed for small robotics, hobby, and DIY electronics projects that need a lightweight rotary drive. Its small form factor makes it easy to mount inside tight enclosures such as toy vehicles, small fans, and simple mechanical builds.

As a brushed DC motor, it runs directly off a DC supply within its rated voltage range, spinning faster with higher applied voltage — a straightforward choice for beginner and intermediate electronics/robotics projects that need simple, low-cost rotary motion.

  1. Compact, lightweight micro DC motor
  2. High-speed rotary output
  3. Simple two-wire DC drive, no driver circuitry required for basic operation
  4. Low cost, suited to hobbyist and educational projects
  5. Fits small enclosures — toys, fans, simple robotics builds
🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
Motorto H-bridge OUTmotor leads into an H-bridge driver's output terminals
📟
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
High Speed Micro DC Motor - Arduino Uno
High Speed Micro DC Motor - Arduino Nano
High Speed Micro DC Motor - Arduino Mega
High Speed Micro DC Motor - ESP32
High Speed Micro DC Motor - ESP8266
High Speed Micro DC Motor - STM32
High Speed Micro DC Motor - Raspberry Pi Pico
📄 File: high_speed_micro_dc_motor_-_arduino_uno.inoArduino Uno
630 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// High Speed Micro DC Motor 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: high_speed_micro_dc_motor_-_arduino_nano.inoArduino Nano
631 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// High Speed Micro DC Motor 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: high_speed_micro_dc_motor_-_arduino_mega.inoArduino Mega
631 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// High Speed Micro DC Motor 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: high_speed_micro_dc_motor_-_esp32.inoESP32
628 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// High Speed Micro DC Motor 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: high_speed_micro_dc_motor_-_esp8266.inoESP8266
630 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// High Speed Micro DC Motor 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: high_speed_micro_dc_motor_-_stm32.inoSTM32
634 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// High Speed Micro DC Motor 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: high_speed_micro_dc_motor_-_raspberry_pi_pico.inoRaspberry Pi Pico
640 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// High Speed Micro DC Motor 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.

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

High Speed Micro DC Motor متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم Motors | Drivers | Pumps | Actuators، بسعر 25,00 EGP. كود المنتج لدينا: 926. المنتج غير متوفر حالياً — تواصل معنا عبر واتساب لمعرفة موعد توفره القادم.

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

  • Motor Type: Brushed DC
  • المقاس: Micro/compact
  • Typical Applications: Small robotics / Toys / Hobby electronics
  • الوزن: 1 g

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

تصفّح المزيد من Motors | Drivers | Pumps | Actuators في إكوسترا.

Specification

Specification

WeightWeight10 g
Dimensions5 × 4 × 2 cm
Motor TypeBrushed DC
SizeMicro/compact
Typical ApplicationsSmall robotics, Toys, Hobby electronics

Customer Reviews