T dc motor FIXED CAR KIT

  • ncludes T-Type DC Motors: Compact, geared motors for stable movement
  • Fixed Chassis Design: Pre-drilled frame for easy assembly
  • Ideal for 2WD Robots: Great for line-following and obstacle-avoiding cars
  • Durable Build: Suitable for beginners and DIY robotic projects
  • Plug-and-Play Kit: Ready to mount motors, wheels, and controllers
SKU: EK1771 Category: Tag:

Apple Shopping Event

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

2,00 EGP

8 People watching this product now!

Payment Methods:

Description

The T DC Motor Fixed Car Kit is a compact and efficient mobility solution designed for DIY robot cars, Arduino rover projects, and educational robotics. This kit includes a T-type motor bracket, a DC gear motor, and the necessary mounting hardware to securely fix the motor to a chassis or platform.

The included DC motor offers a balanced mix of torque and speed, making it suitable for light to medium-duty robotic movement. The T-shaped mounting bracket ensures solid and stable alignment while simplifying the installation process on most chassis designs.

Ideal for hobbyists, students, and educators, this kit is perfect for assembling basic 2WD or 4WD robotic vehicles, obstacle-avoiding cars, line-following robots, and more.


Key Features

  • Includes T-type bracket for firm motor mounting

  • Comes with a compact DC gear motor (3V–6V typically)

  • Easy to integrate with wheels and standard robot chassis

  • Ideal for 2WD/4WD car kits, mobile robots, and Arduino projects

  • Durable metal bracket with pre-drilled holes for secure fitting

  • Beginner-friendly and educational


Specifications

Parameter Value
Motor Type Brushed DC Gear Motor
Operating Voltage 3V – 6V DC
Output Shaft Round or D-shaft (varies by model)
Mounting Bracket T-type metal motor mount
Application DIY robot cars, Arduino rovers, 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
📟
T dc motor FIXED CAR KIT
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
T dc motor FIXED CAR KIT - Arduino Uno
T dc motor FIXED CAR KIT - Arduino Nano
T dc motor FIXED CAR KIT - Arduino Mega
T dc motor FIXED CAR KIT - ESP32
T dc motor FIXED CAR KIT - ESP8266
T dc motor FIXED CAR KIT - STM32
T dc motor FIXED CAR KIT - Raspberry Pi Pico
📄 File: t_dc_motor_fixed_car_kit_-_arduino_uno.inoArduino Uno
629 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// T dc motor FIXED CAR KIT 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: t_dc_motor_fixed_car_kit_-_arduino_nano.inoArduino Nano
630 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// T dc motor FIXED CAR KIT 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: t_dc_motor_fixed_car_kit_-_arduino_mega.inoArduino Mega
630 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// T dc motor FIXED CAR KIT 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: t_dc_motor_fixed_car_kit_-_esp32.inoESP32
627 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// T dc motor FIXED CAR KIT 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: t_dc_motor_fixed_car_kit_-_esp8266.inoESP8266
629 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// T dc motor FIXED CAR KIT 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: t_dc_motor_fixed_car_kit_-_stm32.inoSTM32
633 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// T dc motor FIXED CAR KIT 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: t_dc_motor_fixed_car_kit_-_raspberry_pi_pico.inoRaspberry Pi Pico
639 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// T dc motor FIXED CAR KIT 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.

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

T dc motor FIXED CAR KIT متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم Motors | Drivers | Pumps | Actuators، بسعر 2,00 EGP. كود المنتج لدينا: EK1771. المنتج غير متوفر حالياً — تواصل معنا عبر واتساب لمعرفة موعد توفره القادم.

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

  • Product Name: T DC Motor Fixed Car Kit
  • Motor Type: DC Gear Motor (T-Type)
  • Operating Voltage: 3V – 6V
  • Motor Speed: Standard Speed
  • Gearbox Type: Plastic Gearbox
  • Shaft Type: D-Shaft
  • Shaft Length: 10 mm
  • طريقة التثبيت: Fixed Bracket (Car Kit)

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

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

Specification

Specification

WeightWeight0,045 g
Dimensions7 × 2,2 × 1,8 cm
Product NameT DC Motor Fixed Car Kit
Motor TypeDC Gear Motor (T-Type)
Operating Voltage3V – 6V
Motor SpeedStandard Speed
Gearbox TypePlastic Gearbox
Shaft TypeD-Shaft
Shaft Length10 mm
Mounting TypeFixed Bracket (Car Kit)
Wheel CompatibilityRobot Car Wheels
Rotation DirectionCW / CCW
MaterialPlastic & Metal
ApplicationRobot Car Kits, Line Follower Robots, DIY Robotics

Customer Reviews