N20-6V-40 Rpm Micro Metal Gear Motor

SKU: EK393 Category: Tag:

Apple Shopping Event

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

100,00 EGP

4 People watching this product now!

Payment Methods:

Description

<p>This N20-6V-40 Rpm Micro Metal Gear Motor has small volume, torsion big, all metal gear, durable, not easy to wear. Great replacement for the rusty or damaged DC geared speed reduce motor on the machine. Widely used on Boat, Car, Electric Bicycle, Fan, Home Appliance.</p> <p>The N20 Micro Gear 6V 40 RPM DC Motor (High Torque) is lightweight, high torque, and low RPM motor. It is equipped with gearbox assembly so as to increase the torque of the motor. It has a cross-section of 10 × 12 mm, and the D-shaped gearbox output shaft is 9 mm long and 3 mm in diameter. It has a very small size so as fit in complex spaces of small-scale application. One can connect this Micro Gear Motor to wheels to drive them from one place to other while carrying high loads.</p> <p>This N20 Micro Gear 40 RPM 6V DC Motor (High Torque) has small volume, torsion big, all metal gear, durable, not easy to wear. Great replacement for the rusty or damaged DC geared speed reduce motor on the machine. Widely used on Boat, Car, Electric Bicycle, Fan, Home Appliance.</p> <p> </p> <p><em><strong>Note</strong>: Image of product may differ from the Actual Product.</em></p> <hr /> <h4><strong>Features :</strong></h4> <ol> <li>This is a DC Mini Metal Gear Motor, ideal for making robots</li> <li>Lightweight, high torque and low RPM.</li> <li>Fine craftsmanship, durable, not easy to wear.</li> <li>With excellent stall characteristics, can climb hills easily.</li> <li>You can also easily mount a wheel on the motor’s output shaft.</li> </ol> <hr /> <h4><strong>Package Includes :</strong></h4> <p>1 x N20-6V-40 Rpm Micro Metal Gear Motor</p>

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
Motorto H-bridge OUTmotor leads into an H-bridge driver's output terminals
📟
N20-6V-40 Rpm Micro Metal Gear Motor
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
N20-6V-40 Rpm Micro Metal Gear Motor - Arduino Uno
N20-6V-40 Rpm Micro Metal Gear Motor - Arduino Nano
N20-6V-40 Rpm Micro Metal Gear Motor - Arduino Mega
N20-6V-40 Rpm Micro Metal Gear Motor - ESP32
N20-6V-40 Rpm Micro Metal Gear Motor - ESP8266
N20-6V-40 Rpm Micro Metal Gear Motor - STM32
N20-6V-40 Rpm Micro Metal Gear Motor - Raspberry Pi Pico
📄 File: n20-6v-40_rpm_micro_metal_gear_motor_-_arduino_uno.inoArduino Uno
641 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// N20-6V-40 Rpm Micro Metal Gear 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: n20-6v-40_rpm_micro_metal_gear_motor_-_arduino_nano.inoArduino Nano
642 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// N20-6V-40 Rpm Micro Metal Gear 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: n20-6v-40_rpm_micro_metal_gear_motor_-_arduino_mega.inoArduino Mega
642 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// N20-6V-40 Rpm Micro Metal Gear 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: n20-6v-40_rpm_micro_metal_gear_motor_-_esp32.inoESP32
639 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// N20-6V-40 Rpm Micro Metal Gear 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: n20-6v-40_rpm_micro_metal_gear_motor_-_esp8266.inoESP8266
641 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// N20-6V-40 Rpm Micro Metal Gear 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: n20-6v-40_rpm_micro_metal_gear_motor_-_stm32.inoSTM32
645 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// N20-6V-40 Rpm Micro Metal Gear 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: n20-6v-40_rpm_micro_metal_gear_motor_-_raspberry_pi_pico.inoRaspberry Pi Pico
651 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// N20-6V-40 Rpm Micro Metal Gear 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.

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

N20-6V-40 Rpm Micro Metal Gear Motor متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم Motors | Drivers | Pumps | Actuators، بسعر 100,00 EGP. كود المنتج لدينا: EK393. المنتج غير متوفر حالياً — تواصل معنا عبر واتساب لمعرفة موعد توفره القادم.

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

  • Product Name: N20-6V-40 RPM Micro Metal Gear Motor
  • Motor Type: DC Gear Motor
  • Gearbox Type: Metal Gearbox
  • Rated Voltage: 6V DC
  • No Load Speed: 40 RPM
  • Gear Ratio: High Reduction
  • Motor Size: N20
  • Shaft Type: D-Shaft

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

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

Specification

Specification

WeightWeight0,012 g
Dimensions2,6 × 1,2 × 1 cm
Product NameN20-6V-40 RPM Micro Metal Gear Motor
Motor TypeDC Gear Motor
Gearbox TypeMetal Gearbox
Rated Voltage6V DC
No-Load Speed40 RPM
Gear RatioHigh Reduction
Motor SizeN20
Shaft TypeD-Shaft
Shaft Diameter3 mm
Rotation DirectionCW / CCW
TorqueHigh Torque
MaterialMetal Gearbox + Metal Motor
ApplicationRobotics, Automation, Line Follower Robots, DIY Projects

Customer Reviews