N20-6V-100 RPM Micro Metal Gear-box DC Motor

SKU: EK453 Category: Tag:

Apple Shopping Event

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

100,00 EGP

18 People watching this product now!

Payment Methods:

Description

<p>This N20-6V-100 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 100 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 100RPM 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>Motors with the variety of torque and speed ranging from low to high are available at <a href=""https://www.bot3dprint.com/product-category/motors-drivers-actuators/motors/"">BOT Electronics.</a></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-100 RPM Micro Metal Gear-box DC 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-100 RPM Micro Metal Gear-box DC Motor
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
N20-6V-100 RPM Micro Metal Gear-box DC Motor - Arduino Uno
N20-6V-100 RPM Micro Metal Gear-box DC Motor - Arduino Nano
N20-6V-100 RPM Micro Metal Gear-box DC Motor - Arduino Mega
N20-6V-100 RPM Micro Metal Gear-box DC Motor - ESP32
N20-6V-100 RPM Micro Metal Gear-box DC Motor - ESP8266
N20-6V-100 RPM Micro Metal Gear-box DC Motor - STM32
N20-6V-100 RPM Micro Metal Gear-box DC Motor - Raspberry Pi Pico
📄 File: n20-6v-100_rpm_micro_metal_gear-box_dc_motor_-_arduino_uno.inoArduino Uno
649 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// N20-6V-100 RPM Micro Metal Gear-box 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: n20-6v-100_rpm_micro_metal_gear-box_dc_motor_-_arduino_nano.inoArduino Nano
650 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// N20-6V-100 RPM Micro Metal Gear-box 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: n20-6v-100_rpm_micro_metal_gear-box_dc_motor_-_arduino_mega.inoArduino Mega
650 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// N20-6V-100 RPM Micro Metal Gear-box 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: n20-6v-100_rpm_micro_metal_gear-box_dc_motor_-_esp32.inoESP32
647 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// N20-6V-100 RPM Micro Metal Gear-box 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: n20-6v-100_rpm_micro_metal_gear-box_dc_motor_-_esp8266.inoESP8266
649 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// N20-6V-100 RPM Micro Metal Gear-box 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: n20-6v-100_rpm_micro_metal_gear-box_dc_motor_-_stm32.inoSTM32
653 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// N20-6V-100 RPM Micro Metal Gear-box 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: n20-6v-100_rpm_micro_metal_gear-box_dc_motor_-_raspberry_pi_pico.inoRaspberry Pi Pico
659 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// N20-6V-100 RPM Micro Metal Gear-box 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.

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

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

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

  • Product Name: N20-6V-100 RPM Micro Metal Gearbox DC Motor
  • Motor Type: DC Gear Motor
  • Gearbox Type: Metal Gearbox
  • Rated Voltage: 6V DC
  • No Load Speed: 100 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-100 RPM Micro Metal Gearbox DC Motor
Motor TypeDC Gear Motor
Gearbox TypeMetal Gearbox
Rated Voltage6V DC
No-Load Speed100 RPM
Gear RatioHigh Reduction
Motor SizeN20
Shaft TypeD-Shaft
Shaft Diameter3 mm
Rotation DirectionCW / CCW
TorqueHigh Torque
MaterialMetal Gearbox + Metal Motor
ApplicationRobotics, Line Follower, Automation, DIY Projects

Customer Reviews