Mini Rover Robot Chassis Kit – 4WD (4 Wheeler)


Mini Rover Robot Chassis Kit – 4WD (4 Wheeler)

1,250.00৳ 

Back to products



KK2.1.5 Multi-rotor Drone LCD Flight Control Board With 6050MPU And Atmel 644PA


KK2.1.5 Multi-rotor Drone LCD Flight Control Board With 6050MPU And Atmel 644PA

Original price was: 6,500.00৳ .Current price is: 4,400.00৳ .
Mini Rover Robot DIY Kit – WiFi Controlled (4WD, Multi-Color) - Image 1

Mini Rover Robot DIY Kit – WiFi Controlled (4WD, Multi-Color) - Image 2


Mini Rover Robot DIY Kit – WiFi Controlled (4WD, Multi-Color) - Image 3

Mini Rover Robot DIY Kit – WiFi Controlled (4WD, Multi-Color)
Mini Rover Robot DIY Kit – WiFi Controlled (4WD, Multi-Color) - Image 2
Mini Rover Robot DIY Kit – WiFi Controlled (4WD, Multi-Color) - Image 3

Mini Rover Robot DIY Kit – WiFi Controlled (4WD, Multi-Color)

SKU:
N/A

2,250.00৳ 

Clear









[html_block id="1101"]

Payment Methods:

Description

Build your own WiFi-controlled 4WD robot with this Mini Rover Robot DIY Kit, designed for students, hobbyists, and robotics enthusiasts! With an eye-catching multi-color 3D printed chassis, this kit lets you learn, experiment, and explore robotics and IoT control through WiFi.

🔧 Kit Includes:

  • 3D Printed Chassis (Multi-color, lightweight & durable)

  • TT Gear Motors with matching Wheels

  • 1 Set Nut, Bolt & Screw Pack for easy assembly

  • Wires Set

  • Battery Holder (18650 2S) with 2pcs Battery, Charging Module, and Power Switch

  • L298N Motor Driver Module

  • NodeMCU V3 (ESP8266 WiFi Module)

💡 Features:

  • WiFi Controlled: Operate your robot from your smartphone or computer

  • Durable 3D Printed Chassis: Multi-color design with lightweight strength

  • 4WD System: Better traction, balance, and movement

  • Easy Assembly: Great for learning robotics, IoT, and Arduino programming

  • Educational Value: Perfect for STEM projects, school robotics clubs, and personal learning

⚙️ Demo Code (For NodeMCU + L298N):

#define ENA 14 // Enable/speed motors Right GPIO14(D5)
#define ENB 12 // Enable/speed motors Left GPIO12(D6)
#define IN_1 15 // L298N in1 motors Right GPIO13(D8)

#define IN_2 13 // L298N in2 motors Right GPIO13(D7)
#define IN_3 2 // L298N in3 motors Left GPIO2(D4)
#define IN_4 0 // L298N in4 motors Left GPIO0(D3)

#include <ESP8266WiFi.h>
#include <WiFiClient.h>
#include <ESP8266WebServer.h>

String command; //String to store app command state.
int speedCar = 800; // 400 – 1023.
int speed_Coeff = 3;

const char* ssid = “Radiogear BD WiFi Car”;
ESP8266WebServer server(80);

void setup() {

pinMode(ENA, OUTPUT);
pinMode(ENB, OUTPUT);
pinMode(IN_1, OUTPUT);
pinMode(IN_2, OUTPUT);
pinMode(IN_3, OUTPUT);
pinMode(IN_4, OUTPUT);

Serial.begin(115200);

// Connecting WiFi

WiFi.mode(WIFI_AP);
WiFi.softAP(ssid);

IPAddress myIP = WiFi.softAPIP();
Serial.print(“AP IP address: “);
Serial.println(myIP);

// Starting WEB-server
server.on ( “/”, HTTP_handleRoot );
server.onNotFound ( HTTP_handleRoot );
server.begin();
}

void goAhead(){

digitalWrite(IN_1, LOW);
digitalWrite(IN_2, HIGH);
analogWrite(ENA, speedCar);

digitalWrite(IN_3, LOW);
digitalWrite(IN_4, HIGH);
analogWrite(ENB, speedCar);
}

void goBack(){

digitalWrite(IN_1, HIGH);
digitalWrite(IN_2, LOW);
analogWrite(ENA, speedCar);

digitalWrite(IN_3, HIGH);
digitalWrite(IN_4, LOW);
analogWrite(ENB, speedCar);
}

void goRight(){

digitalWrite(IN_1, HIGH);
digitalWrite(IN_2, LOW);
analogWrite(ENA, speedCar);

digitalWrite(IN_3, LOW);
digitalWrite(IN_4, HIGH);
analogWrite(ENB, speedCar);
}

void goLeft(){

digitalWrite(IN_1, LOW);
digitalWrite(IN_2, HIGH);
analogWrite(ENA, speedCar);

digitalWrite(IN_3, HIGH);
digitalWrite(IN_4, LOW);
analogWrite(ENB, speedCar);
}

void goAheadRight(){

digitalWrite(IN_1, LOW);
digitalWrite(IN_2, HIGH);
analogWrite(ENA, speedCar/speed_Coeff);

digitalWrite(IN_3, LOW);
digitalWrite(IN_4, HIGH);
analogWrite(ENB, speedCar);
}

void goAheadLeft(){

digitalWrite(IN_1, LOW);
digitalWrite(IN_2, HIGH);
analogWrite(ENA, speedCar);

digitalWrite(IN_3, LOW);
digitalWrite(IN_4, HIGH);
analogWrite(ENB, speedCar/speed_Coeff);
}

void goBackRight(){

digitalWrite(IN_1, HIGH);
digitalWrite(IN_2, LOW);
analogWrite(ENA, speedCar/speed_Coeff);

digitalWrite(IN_3, HIGH);
digitalWrite(IN_4, LOW);
analogWrite(ENB, speedCar);
}

void goBackLeft(){

digitalWrite(IN_1, HIGH);
digitalWrite(IN_2, LOW);
analogWrite(ENA, speedCar);

digitalWrite(IN_3, HIGH);
digitalWrite(IN_4, LOW);
analogWrite(ENB, speedCar/speed_Coeff);
}

void stopRobot(){

digitalWrite(IN_1, LOW);
digitalWrite(IN_2, LOW);
analogWrite(ENA, speedCar);

digitalWrite(IN_3, LOW);
digitalWrite(IN_4, LOW);
analogWrite(ENB, speedCar);
}

void loop() {
server.handleClient();

command = server.arg(“State”);
if (command == “F”) goAhead();
else if (command == “B”) goBack();
else if (command == “L”) goLeft();
else if (command == “R”) goRight();
else if (command == “I”) goAheadRight();
else if (command == “G”) goAheadLeft();
else if (command == “J”) goBackRight();
else if (command == “H”) goBackLeft();
else if (command == “0”) speedCar = 400;
else if (command == “1”) speedCar = 470;
else if (command == “2”) speedCar = 540;
else if (command == “3”) speedCar = 610;
else if (command == “4”) speedCar = 680;
else if (command == “5”) speedCar = 750;
else if (command == “6”) speedCar = 820;
else if (command == “7”) speedCar = 890;
else if (command == “8”) speedCar = 960;
else if (command == “9”) speedCar = 1023;
else if (command == “S”) stopRobot();
}

void HTTP_handleRoot(void) {

if( server.hasArg(“State”) ){
Serial.println(server.arg(“State”));
}
server.send ( 200, “text/html”, “” );
delay(1);
}

Available now at Radiogear BD — Since 2019, your trusted source for Robotics, FPV & 3D Printing solutions!

Related Products

-20%Hot

Add to compare
Quick view

Add to wishlist

DIY Mini RC Drone Kit 2.4GHz W/ 5.8G mini Drone Kit

In stock

Original price was: 2,800.00৳ .Current price is: 2,250.00৳ .
Add to cart




Add to compare

Quick view

Add to wishlist

1 Section 18650 Battery Holder Bracket For DIY Battery Pack

In stock

10.00৳ 
Add to cart




Add to compare

Quick view

Add to wishlist

3D Printing Service

In stock

6.00৳ 
Add to cart




Add to compare

Quick view

Add to wishlist

NRF24L01+PA+LNA 2.4GHz SMA Antenna Wireless Transceiver communication module

In stock

260.00৳ 
Add to cart


-27%


Add to compare

Quick view

Add to wishlist

Arduino Nano V3.0 With USB Cable High Quality

In stock

Original price was: 480.00৳ .Current price is: 350.00৳ .
Add to cart


-17%


Add to compare

Quick view

Add to wishlist

Racing Drone Complete DIY Kit

In stock

Original price was: 26,500.00৳ .Current price is: 22,000.00৳ .
Add to cart

Recently Viewed


DIY Mini RC Drone Kit 2.4GHz W/ 5.8G mini Drone Kit

Original price was: 2,800.00৳ .Current price is: 2,250.00৳ .

1 Section 18650 Battery Holder Bracket For DIY Battery Pack

10.00৳ 

3D Printing Service

6.00৳ 

NRF24L01+PA+LNA 2.4GHz SMA Antenna Wireless Transceiver communication module

260.00৳ 

Arduino Nano V3.0 With USB Cable High Quality

Original price was: 480.00৳ .Current price is: 350.00৳ .

Racing Drone Complete DIY Kit

Original price was: 26,500.00৳ .Current price is: 22,000.00৳ .