300 RPM L-Shape BO Motor

300 RPM L-Shape BO Motor – DC Gear Motor
1. Speed: 300 RPM (no-load)
2. Voltage: 3–6 V
3. Gearbox: Plastic L-shape
4. Shaft: D-shaft
5. Torque: Medium

Apple Shopping Event

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

35,00 EGP

5 People watching this product now!

Payment Methods:

Description

This is a 300 RPM L‑Shape BO DC gear motor, a compact motor with an integrated plastic gearbox. It operates on 3–6 V DC and delivers a no‑load speed of 300 RPM. The motor features a D‑shaped output shaft oriented at 90° (L‑shape) relative to the motor body, making it ideal for wheel drive in small robot cars and line-following robots.

The gearbox reduces the motor’s high speed and increases torque, providing medium torque output suitable for moving lightweight platforms. The L‑shaped configuration allows for a low-profile mounting and easy integration into chassis designs. The motor is commonly used in educational robotics, line follower vehicles, and other DIY projects.

  1. Speed: 300 RPM (no-load)
  2. Voltage: 3–6 V DC
  3. Gearbox: Plastic, L‑shape (90° output)
  4. Shaft: D‑shaped for secure coupling
  5. Torque: Medium torque
  6. Materials: Plastic gearbox, metal motor body
  7. Rotation: CW/CCW reversible
  8. Application: Robot cars, line followers, educational kits
🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
Motorto H-bridge OUTmotor leads into an H-bridge driver's output terminals
📟
300 RPM L-Shape BO Motor
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
300 RPM L-Shape BO Motor - Arduino Uno
300 RPM L-Shape BO Motor - Arduino Nano
300 RPM L-Shape BO Motor - Arduino Mega
300 RPM L-Shape BO Motor - ESP32
300 RPM L-Shape BO Motor - ESP8266
300 RPM L-Shape BO Motor - STM32
300 RPM L-Shape BO Motor - Raspberry Pi Pico
📄 File: 300_rpm_l-shape_bo_motor_-_arduino_uno.inoArduino Uno
629 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// 300 RPM L-Shape BO 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: 300_rpm_l-shape_bo_motor_-_arduino_nano.inoArduino Nano
630 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// 300 RPM L-Shape BO 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: 300_rpm_l-shape_bo_motor_-_arduino_mega.inoArduino Mega
630 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// 300 RPM L-Shape BO 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: 300_rpm_l-shape_bo_motor_-_esp32.inoESP32
627 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// 300 RPM L-Shape BO 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: 300_rpm_l-shape_bo_motor_-_esp8266.inoESP8266
629 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// 300 RPM L-Shape BO 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: 300_rpm_l-shape_bo_motor_-_stm32.inoSTM32
633 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// 300 RPM L-Shape BO 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: 300_rpm_l-shape_bo_motor_-_raspberry_pi_pico.inoRaspberry Pi Pico
639 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// 300 RPM L-Shape BO 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.

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

300 RPM L-Shape BO Motor متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم Motors | Drivers | Pumps | Actuators، بسعر 35,00 EGP. كود المنتج لدينا: EK394. المنتج غير متوفر حالياً — تواصل معنا عبر واتساب لمعرفة موعد توفره القادم.

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

  • Motor Type: DC Gear Motor (BO Type)
  • Gearbox Type: Plastic
  • Rated Voltage: 3–6 V
  • No Load Speed: 300 RPM
  • Shaft Type: D‑Shaft
  • Shaft Orientation: L‑Shape (90°)
  • Rotation Direction: CW / CCW
  • Torque: Medium

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

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

Specification

Specification

WeightWeight0,045 g
Dimensions7 × 2,2 × 1,8 cm
Motor TypeDC Gear Motor (BO Type)
Gearbox TypePlastic
Rated Voltage3–6 V
No-Load Speed300 RPM
Shaft TypeD‑Shaft
Shaft OrientationL‑Shape (90°)
Rotation DirectionCW / CCW
TorqueMedium
MaterialPlastic & Metal
ApplicationRobot Cars, Line Follower, DIY Robotics, Educational Kits

Customer Reviews