Arduino Obstacle Avoiding Line Follower Robot DIY Kit Original price was: 3,500.00৳ .Current price is: 2,850.00৳ .
Back to products
Arduino Bluetooth Controlled Robot Car DIY Kit Original price was: 3,500.00৳ .Current price is: 2,799.00৳ .

Arduino Obstacle Avoiding Robot Car DIY Kit

Original price was: 3,200.00৳ .Current price is: 2,650.00৳ .

20 People watching this product now!
  • Pick up from the RadioGear Store

Schedule Pick up from store

Free

  • Inside Dhaka Metro

Inside Dhaka Metro city

24 Hours

60tk

  • Outside Dhaka metro

Outside Dhaka Metro

24 Hours

100tk

  • Outside Dhaka

All Bangladesh 

1-2 Days

130tk

  • Terms And Conditions
  • Return Policy

Payment Methods:

How to Order Online

Description

 

Component List:

1x Arduino Board  UNO)
1x –A to micro-USB cable
1x 4wheel Car chassis
1x L298 motor driver module

1x sonar sensor

1x sonar sensor holder

1x 9g servo

2x 18650 battery

1x 2s holder

1x battery charger

1xOn-Off- Switch
Connecting wire
jumper cables

 

Diagram: https://www.youtube.com/watch?v=jts4YtE4h_0

Code:

char data = 0;
void setup()
{
Serial.begin(9600);
pinMode(8, OUTPUT);
pinMode(9, OUTPUT);
pinMode(10, OUTPUT);
pinMode(11, OUTPUT);
}
void loop()
{
if(Serial.available() > 0)
{
data = Serial.read();
Serial.print(data);
Serial.print(“\n”);
if(data == ‘a’)
digitalWrite(8, HIGH);
else if(data == ‘b’)
digitalWrite(8, LOW);
if(data == ‘c’)
digitalWrite(9, HIGH);
else if(data == ‘d’)
digitalWrite(9, LOW);
if(data == ‘e’)
digitalWrite(10, HIGH);
else if(data == ‘f’)
digitalWrite(10, LOW);
if(data == ‘g’)
digitalWrite(11, HIGH);
else if(data == ‘h’)
digitalWrite(11, LOW);
}
}

Customer Reviews