For those who seems doing the tutorial correctly but the robot keep moving straight, do this step: ADJUST YOUR IR SENSOR POTENTIOMETER TO LOW, keep it adjusted between reading surface and stop when crossing black line, @diy builder didn't explain it, but this is very important step
@kazakrishnabharadwaj34102 жыл бұрын
How that car will run
@kazakrishnabharadwaj34102 жыл бұрын
By keeping that battery will it run automatically
@rockstarrumbles53072 жыл бұрын
can you explain it clear please i have the same problem
@varshithr32282 жыл бұрын
@@rockstarrumbles5307 did you figure it out ??
@varshithr32282 жыл бұрын
my car won't run from the battery is there anything i can do to rectify it
@narindersingh4706 Жыл бұрын
My ir sensor lights stay green and the car is not moving… I need help it’s for a school project 😢
@anindyaghosh1762 Жыл бұрын
Bro there is a screw just rotate it a bit it will work.. By rotating the screw you can adjust the range of the IR sensor 🤞🏼
@ZakirZakirubaidАй бұрын
@@anindyaghosh1762 Then also not wodking
@Pulse.x3 жыл бұрын
Step 2: Hardware Installation Hardware Installation Hardware Installation 1. Assemble the 2WD Smart Car Chasis 2 Wheels 2. Connect the IR sensor to Analog to Digital and Comparator Module IN1 > IR Sensor 1 IN2 > IR Sensor 2 IN3 > IR Sensor 3 IN4 > IR Sensor 4 3. Then, connect the output pin to Arduino UNO analog pin OUT1 > A2 OUT2 > A3 OUT3 > A4 OUT4 > A5 4. Connect Vin to 5V and GND to GND in Arduino UNO 5. Then, connect the motor driver pin to Arduino UNO pin IN1 > D10 IN2 > D9 IN3 > D6 IN4 > D5 6. Connect the both motor to motor driver Motor A > Right motor Motor B > Left motor After completing the connection, connect the Arduino to power supply with USB cable.
@karangarg20855 жыл бұрын
You should upload the code too here only. As without code your video is of no use.
@syedmuhammadhassanali6809 Жыл бұрын
I strongly agree with you
@பெருநகர்ஜெயராமன் Жыл бұрын
Yeah, me too.
@nehamehta9143 Жыл бұрын
Code is there in description
@vishalm769111 ай бұрын
Well said bro
@gwerror98311 ай бұрын
Yes
@naweednawshard77924 жыл бұрын
finally one with uno and motor shield. Thanks a lot bro, you are a lifesaver
@akshara767910 ай бұрын
Same
@akshara767910 ай бұрын
I am also making as first and I want to use a motor shield
@kawaiii5553 жыл бұрын
Hello! Thank you for making this fantastic video but I somehow cannot open the code. Can you please re-send it? That would be really helpful, thank you!
@gulabgabhane41132 жыл бұрын
It will not be opend in mobile, it will open in laptop having Aurduino ide
@hirenkanojia54385 жыл бұрын
Bro I have a problem the line following robot is responding to every object instead of black only i tried to change the potentiometer reading by rotating the cube but nothing happens
@abhishekbagva51105 жыл бұрын
Try to change the intensity of ir sensor 😁 and brother never use ready made ir sensor coz there vulnerable to light... Better try to make your own one.. And it's really a easy task to make one...
@kyrofromgahool20092 жыл бұрын
Dank u wel meneer for info. I'm studying HBO university. They asked on the first course to build a car that follows the line and avoids obticles i dont know what to build. At least here you showed from what to start. Thanks
@DIYBuilder2 жыл бұрын
you're welcome
@hemanths27802 жыл бұрын
@@DIYBuilder please send code we are done with this and need code
@iam.aindiangamer9572 Жыл бұрын
Which course
@zainrei49172 жыл бұрын
Good video and also good coding. Thank you very much for your wonderful work. Still i have a question. Do i also need to supply the arduino with a 5v battery or only the motor driver? The dc motors run faster if i supply the arduino with a seperate supply but i do not know if this is safe or does it damage the arduino module.
@adityamadbhavi50814 жыл бұрын
after a single line path if there are two paths to the left and right side then where will it goes???
@davxachatryan93714 жыл бұрын
Hi, Can You advice me where can I find robotic exercises?
@nabilsellami27075 жыл бұрын
Thank you. keep uploading this kind of videos. Very useful and easy to make. Don't forget to upload the .ino file
sir there are alot of errors in ur code plz upload the correct code..
@King-yo6fc5 жыл бұрын
it is very good but i have some problem with the jump wire because i'll have to buy female to female jumpwire
@PrometheusKnt3 жыл бұрын
is there a difference between the arduino uno ATmega328P? or I should purchase the exact model posted in the description box?
@nIkI_nazarov Жыл бұрын
No, you can use either
@madhavanj54894 жыл бұрын
Sir will this work for 1 inch black line
@wasifrock6873 жыл бұрын
No it won't.i have already tried it.
@aaravraj99435 жыл бұрын
hey bro can you make a video on how to fix the l293d motor shield because mine is not responding
@sumantakumardutta9863 жыл бұрын
In the video, he has forgot to remove the jumper, while connecting external power supply to the shield. But how on earth did it work?? I think your shield will work now.
@maheshrg36032 жыл бұрын
Hi bro I have a doubt that is on the download image the sensor connection is another and bro is connection in this video is another I connect those but it is not working what can I do please reply
@maheshrg36032 жыл бұрын
which connection is correct
@fatimahtasneemsamiha5737 Жыл бұрын
Hello sir, your video is very informative but I unfortunately cannot access the circuit diagram and code. It will be very kind of you to help me regarding this issue.
@bhaumicreations357110 ай бұрын
Same here
@vaishnavsonawane59244 жыл бұрын
I am doing the same project but having problem of power supply. Which and how many batteries are you using.
@DIYBuilder4 жыл бұрын
two batteries of 3.7v
@anassaleh92365 жыл бұрын
// NOTE Before writing this code Go to - tools - manage library - Search: Motor Driver - Install the adafruit motor shield library// //Including the libraries #include //defining pins and variables #define lefts A4 #define rights A5 //defining motors AF_DCMotor motor1(1, MOTOR12_1KHZ); AF_DCMotor motor2(2, MOTOR12_1KHZ); AF_DCMotor motor3(3, MOTOR34_1KHZ); AF_DCMotor motor4(4, MOTOR34_1KHZ); void setup(){ // Setting the speed of the motor motor1.setSpeed(120); motor2.setSpeed(120); motor3.setSpeed(120); motor4.setSpeed(120); //declaring pin types pinMode(lefts,INPUT); pinMode(rights,INPUT); //begin serial communication Serial.begin(9600); } void loop(){ //printing values of the sensors to the serial monitor Serial.println(analogRead(lefts)); Serial.println(analogRead(rights)); // Line detected by both if(analogRead(lefts)
@madhavanj54894 жыл бұрын
did the line follower works perfectly for you
@anassaleh92364 жыл бұрын
@@madhavanj5489 nope , i had to do major mofifications, firsly the motor speed is set too low on the code that the motors wouldnt move , once i increased the speed the robot moves too fast and ignores the line , therefore i bought new geared dc motors with 15rpm today im going to test if they will work
@madhavanj54894 жыл бұрын
If it work, pls notify me, buying this components is ok na?
@anassaleh92364 жыл бұрын
Nope i dont recommend it too much trouble
@helloworld90573 жыл бұрын
I got a already built chasis and i can see small 4 wheels ahead of the motors connected there beneath the chasis. Would it make any difference ?? If i follow your steps what changes i need to make ?
@vikhneshar1044 жыл бұрын
The Arduino code that you given below is not gong to work the values of the IR sensor is wrong & THEIR WAS A LOT MORE MISTAKES one of them was the read command but non of them will show up as errors which feels like this is intentional & the code given the description is different from the one he is using
@ashishmark00384 жыл бұрын
Did u got the right codes ???
@nikhil-pr7yn5pf1c4 жыл бұрын
Plz copy paste the code here sir plz
@baraagendy684 жыл бұрын
I think now it is okay because he wrote updated
@lygiahuy89443 жыл бұрын
yes me too the sensor go crazy
@wafflegam1ng6423 жыл бұрын
@NikhilVarma I'll try to do so but it is extremely difficult. You have to pause and resume at short intervals.
@sunithaharish82535 жыл бұрын
What you have put to the table that black strip
@shawetabhardwaj90445 жыл бұрын
Hello Sir, I tried doing same, however, it is going straight. I have checked code and circuit both, which seems fine. Please help me.
@DIYBuilder5 жыл бұрын
Adjust the sensor potentiometer value
@meghamandekar48895 жыл бұрын
Have you got the code then plz also provide me
@HariKrishna-mr5jm4 жыл бұрын
@@DIYBuilder where to adjust the potentiometer value please reply
@nguyenthanhhoan42234 жыл бұрын
can you send me code. thank in advance
@HariKrishna-mr5jm4 жыл бұрын
@@nguyenthanhhoan4223 it's already given in the description bro
@RudraKadam-hf5ic10 ай бұрын
sir I have a doubt that if i will cut the line then it stop or not...........
@joshyough92933 жыл бұрын
Hello! Thank you for making this fascinating project! I want to make a project similar to this, but the motor drivers on Amazon do not have pin headers where you plugged in the IR sensors at timestamp 3:03. Did you solder pin headers into your board on the lower right side?
@ashwin43693 жыл бұрын
Yes we should just solder it to attach the pin headers to the motor driver board!!!
@joshyough92933 жыл бұрын
@@ashwin4369 Thank you for the reply! I actually figured out how to do so and made a robot similar to this one :)
@ashwin43693 жыл бұрын
@@joshyough9293 great to hear dude. All the best
@helloworld90573 жыл бұрын
@josh I'm trying to build one would you help me in ? plz drop your email then. I really want to learn but I'm a beginner and nothing is looking understandable to me. Im confused :(((
@iamharshittt3 жыл бұрын
Yes bro but you must female to male jumper cables...... (Male ones into the motor shield Female ones into the IR sensor)❤️
@mustafamerchant36764 жыл бұрын
Sir if we put an obstacle between car and a line so car will stop or not? Please answer as fast as possible!
@be_a_travellerr5 жыл бұрын
Can you help me in making a maze solver based on ir and arduino
@be_a_travellerr5 жыл бұрын
Any one can help me
@anukritsharma17985 жыл бұрын
@@be_a_travellerr yes
@deepakbains67554 жыл бұрын
Sir please create video of all in one i.e Bluetooth control ,line follow and obstacle avoidance..your work is clean clear and great
@tuannguyen29905 жыл бұрын
Would you please provide the code for this build that doesn't have to follow the black line ? I'm building one to go on a pre-build track that's 5ft wide and 10ft long rectangle . The track has 1 ft wide and about 2 ft rectangular round-abound in the middle
@habidqazaizada77335 жыл бұрын
خلاقیت حدی مرزی نمی شناسد عابد قاضی زاده
@NuzrathSir2 жыл бұрын
Its in the description, check the 2nd link from the top, from the Google Drive you can download it.!
@baithulaysha77862 ай бұрын
@@NuzrathSirthen can you pls send it
@sarkarglobal45474 жыл бұрын
will it work with other motor driver
@axominsane52425 жыл бұрын
Hey Bro plz give the code its veey urgent
@Pulse.x3 жыл бұрын
For this tutorial, we requires these items: 1. Arduino UNO 2. 2WD Smart Car Chasis 2 Wheels 3. Arduino Mini DC Motor Driver Dual H-Bridge PW Control (L293D) 4. IR Line Tracking Sensor (4 bits) 5. Battery 6. Double side tape 7. Wires 8. Jumper wire 9. Black tape Add TipAsk QuestionCommentDownload Step 2: Hardware Installation Hardware Installation Hardware Installation 1. Assemble the 2WD Smart Car Chasis 2 Wheels
@Pulse.x3 жыл бұрын
Step 2: Hardware Installation Hardware Installation Hardware Installation 1. Assemble the 2WD Smart Car Chasis 2 Wheels 2. Connect the IR sensor to Analog to Digital and Comparator Module IN1 > IR Sensor 1 IN2 > IR Sensor 2 IN3 > IR Sensor 3 IN4 > IR Sensor 4 3. Then, connect the output pin to Arduino UNO analog pin OUT1 > A2 OUT2 > A3 OUT3 > A4 OUT4 > A5 4. Connect Vin to 5V and GND to GND in Arduino UNO 5. Then, connect the motor driver pin to Arduino UNO pin IN1 > D10 IN2 > D9 IN3 > D6 IN4 > D5 6. Connect the both motor to motor driver Motor A > Right motor Motor B > Left motorStep 2: Hardware Installation Hardware Installation Hardware Installation 1. Assemble the 2WD Smart Car Chasis 2 Wheels 2. Connect the IR sensor to Analog to Digital and Comparator Module IN1 > IR Sensor 1 IN2 > IR Sensor 2 IN3 > IR Sensor 3 IN4 > IR Sensor 4 3. Then, connect the output pin to Arduino UNO analog pin OUT1 > A2 OUT2 > A3 OUT3 > A4 OUT4 > A5 4. Connect Vin to 5V and GND to GND in Arduino UNO 5. Then, connect the motor driver pin to Arduino UNO pin IN1 > D10 IN2 > D9 IN3 > D6 IN4 > D5 6. Connect the both motor to motor driver Motor A > Right motor Motor B > Left motor
@keeratsingh9295 жыл бұрын
Hello sir can I directly power the adrino board instead of the motor driver ?
@DIYBuilder5 жыл бұрын
no
@narayanai37754 жыл бұрын
Don't buy anything from Banggood. I was ordered there items more than 3 months back. still no update.
@bolt_zz05 жыл бұрын
As again great video bro your all videos are 👌👌👌👌👌👌👌👌🔥🔥🔥🔥🔥🔥💯💯💯💯
@exactly.37324 жыл бұрын
bro my model is not moving even after I bugged codes in it pls give me an idea I'm in hurry
@DIYBuilder4 жыл бұрын
contact me on instagram
@gianjarcia63620 күн бұрын
the build is working need some minor tweaking of the code but it works thank you.
@evanthiahleihil83497 күн бұрын
how did you adjust the code? what changes did you make?
@maheraboraia333gmaher94 жыл бұрын
You are very honest man and you did aperfect work
@DIYBuilder4 жыл бұрын
Thanks
@AbdulRahman-er3dz4 жыл бұрын
Bro you are doing a great job. But it would be even better if you start arduino programming classes you will be having lot of viewers
@DIYBuilder4 жыл бұрын
I'll start soon
@aeffendiibrahim25625 жыл бұрын
easy to understand, another cool DIY Arduino project form you Mr. Surajit! 👍👍👍
@TECH_10445 жыл бұрын
I made everything but the problem is that the 4 motors are not running when I open serial monitor it shows correctly but not moving
@DIYBuilder5 жыл бұрын
contact me here instagram.com/surajit_majumdar/
@surajpadala94015 жыл бұрын
@@DIYBuilder SAME PROBLEM HERE SIR can you accept my request in instagram so that you can solve my problem please respond me sir urgent have a science exhibition next week. and i blew up a L293D ic of the motor driver please repond to my request sir.
@monaa91165 жыл бұрын
can you please upload the code! I need it quickly!thanks
@janardhandukka94145 жыл бұрын
Do u have code please send me
@anbazhaganpooswamy22195 жыл бұрын
It is in the information
@SuperSTAR65KA-Killer5 жыл бұрын
Where did you buy the Infrared Sensor?
@DIYBuilder5 жыл бұрын
From banggood.com
@madhavanj54894 жыл бұрын
Help, will this speed is sufficient for competitions
@vidyasagaranandsagar84015 жыл бұрын
How to download that aurdino line follower document in all laptops or computers plz tell plz
@anassaleh92365 жыл бұрын
just write it out
@shan_singh5 жыл бұрын
click on link in description to download code file. to open, open arduino application on your computer. go to file->open->downloads->downloaded code file. it will show a pop up to create folder, click ok.
@mahinahmedtasmi12734 жыл бұрын
Now this seems real easy to me.thanks man
@justsomepotato15543 жыл бұрын
well, did you get your answer
@justsomepotato15543 жыл бұрын
if you did can you please tell me because I do not know
@alexyouou75602 жыл бұрын
@@justsomepotato1554 What do you want exactly to know?
@justsomepotato15542 жыл бұрын
@@alexyouou7560 i finished my project and I completely forgot what I wanted to know Thanks for responding though
@lakshyaautomotive2 жыл бұрын
@@justsomepotato1554what problems did you faced
@chimdianioke34305 жыл бұрын
what did you use to draw the line
@electromodule79872 жыл бұрын
Normal Tap or Electric tap
@aplicarciencias4 жыл бұрын
Great job! Congrats! Thanks for sharing.
@harikapolepalle56434 жыл бұрын
Can I know where the dc switch is used??
@abdellatifpro96655 жыл бұрын
When will you put the code link
@DIYBuilder5 жыл бұрын
Send me your mail id if you need the code
@abdellatifpro96655 жыл бұрын
@@DIYBuilder abdellatifgeek@gmail.com
@Tharusha-du9cz5 жыл бұрын
Tharushanavidu5@gmail.com Plase give me code and digram
@pcislifeandworld33105 жыл бұрын
Please give me also a code
@andrewhannaking94025 жыл бұрын
@@DIYBuilder andrewhanaking@gmail.com Please give me the code too
@yoyo11402 жыл бұрын
how your arduino is powered? for me the battery only power the motor shield
Bro please help can we increase the range of sensor because when I bring a black polythene it works when it touches the sensor
@sashwnsmu4773 жыл бұрын
Hello, your video is so clear and well edited and I have made this project. The problem I have is the robot is just moving forward and not following the line, can you suggest me some areas I may have done a mistake so I can correct it and make it work😃
@kazakrishnabharadwaj34102 жыл бұрын
Bro how will the robot move by keeping the battery will the car move automatically or we need to have any control or switch??
@sashwnsmu4772 жыл бұрын
@@kazakrishnabharadwaj3410 it will just move man.....
@kazakrishnabharadwaj34102 жыл бұрын
@@sashwnsmu477 but by keeping battery also it's not moving
@kazakrishnabharadwaj34102 жыл бұрын
@@sashwnsmu477 may be I need to dump the code before and then the car will move I guess.
@advaithkrishnap41462 жыл бұрын
ADJUST YOUR IR SENSOR POTENTIOMETER TO LOW, keep it adjusted between reading surface and stop when crossing black line
@Icosiumprod5 жыл бұрын
Plz answer me can we make line follower and obstacle avoiding on this driver ??????
@DIYBuilder5 жыл бұрын
Yes you can but you have to modify the code according to this motor driver
@Icosiumprod5 жыл бұрын
@@DIYBuilder I need the code , can u help me plz ?
@amitbarman78615 жыл бұрын
Wow😲Amazing bro
@RTG-k8n3 ай бұрын
just like ur mother
@SanketThakral2 жыл бұрын
hey! Thank you very much for this project and Can Upls tell that the battery u used is of how many MAH
@ELECTRONICAPROGRAMACIONYROBOTS3 жыл бұрын
Que buen proyecto! Y sin decir una sola palabra 🦾
@Kunal-yg9fs5 жыл бұрын
What is the distance between the two sensors?? Plzz reply fast...
@Oderskocludanozelders3 жыл бұрын
Nothing bro...
@bhawnatomar72615 жыл бұрын
sir i want to make this in my school exhibition pls send code and circuit diagram please it's urgent
@mohammadhassan95275 жыл бұрын
Have you got code
@virtualacademypro3 жыл бұрын
Plz share code
@wasifrock6873 жыл бұрын
It's already in the description
@ravishankarkumar1997 Жыл бұрын
Sir online mil jayega kya yah project bana huaa
@electronic79795 жыл бұрын
Very good project 👍
@rishikesh73714 жыл бұрын
Can we connect 4 ..12v dc Johnson motor with 12v power supply on it
@arjunchauhan32105 жыл бұрын
brother i want code for that
@neerajbaruah17494 жыл бұрын
Hey are all the codes nd library given and is there any extra folders needed to be downloaded??
@user-wn3nh4ec2g5 жыл бұрын
Great you make it an awesome way.
@ajayyadav-ck2gs3 жыл бұрын
Sir what's that line made of its a normal tap or a different material
@electromodule79872 жыл бұрын
NORMAL TAP
@ProCipher4 жыл бұрын
the uploaded code is apiece of crap D:
@testname3674 жыл бұрын
iT'S TRUE. YOU CAN USE THIS. I USED 2 MOTORS. OF COURSE, I AM A NOOB AND THIS IS JUST A SMAR COPY PASTE REPLACE EDIT. dOWNLOAD THE ADAFUIT GITHUB FIRST. #include //MOTOR DEFINATION AF_DCMotor motor1(1); AF_DCMotor motor4(4); //Sensor Connection const int left_sensor_pin =A0; const int right_sensor_pin =A1; int left_sensor_state; int right_sensor_state; void setup() { left_sensor_state = analogRead(left_sensor_pin); right_sensor_state = analogRead(right_sensor_pin); motor1.setSpeed(180); motor4.setSpeed(180); motor1.run(RELEASE); motor4.run(RELEASE); Serial.begin(9600); delay(3000); } void loop() { left_sensor_state = analogRead(left_sensor_pin); right_sensor_state = analogRead(right_sensor_pin); if(right_sensor_state > 500 && left_sensor_state < 500) { Serial.println("turning left"); motor1.run(RELEASE); motor4.run(FORWARD); } if(right_sensor_state < 500 && left_sensor_state > 500) { Serial.println("turning right"); motor1.run(BACKWARD); motor4.run(RELEASE); } if(right_sensor_state > 500 && left_sensor_state > 500) { Serial.println("going forward"); motor1.run(RELEASE); motor4.run(RELEASE); } if(right_sensor_state < 500 && left_sensor_state < 500) { Serial.println("stop"); motor1.run(FORWARD); motor4.run(FORWARD); } }
@wafflegam1ng6423 жыл бұрын
@@testname367 W8888888888888888888888 this REALLY works??????????????????????????
@wafflegam1ng6423 жыл бұрын
@@testname367 Where are motors 2 and 3? u r basically using just 2 motors for a 4 wheeled vehicle. U r not specifying what colour IR Sensors are supposed to be following. There are a million other mistakes. This code is wrong on so many levels!!! No offence but I don't really think it will work.
@kazakrishnabharadwaj34102 жыл бұрын
Do I have to put a switch in that ?? Or it will run automatically by battery
bro what is that line made up of bhai wo line kis cheez se bani hai pl reply fast
@DIYBuilder3 жыл бұрын
black tape
@SilentKiller-tf1yn3 жыл бұрын
@@DIYBuilder thanks sir
@abhaykumardas16665 жыл бұрын
Sir I have send you a mail for the code of line following robot. But till date you have not replied me.pls sir it is important for me to get the code.
@tenpenny2345 жыл бұрын
have you got the code??? if you got then please send it to me
@jc_hz41965 жыл бұрын
code is in the description
@jothiprakasam98635 жыл бұрын
in pc ,download the file in description and open the file in arduino ide app .it works and i got the code
@shubhangikhadilkar50882 жыл бұрын
Can you please please please tell me which wires you have used ... Please tell me the link from Amazon.
@dillibabu3045 жыл бұрын
I need code
@DIYBuilder5 жыл бұрын
mail id please
@abdulrahmanayman42645 жыл бұрын
Did you get the code if yes then please email it to me with the link
@Victor-hb2hi5 жыл бұрын
did u get the code ? send me please
@abdulrahmanayman42645 жыл бұрын
@@Victor-hb2hi nooo I am waiting!!!
@pavanigarikina91545 жыл бұрын
@@abdulrahmanayman4264 i need the code
@sangavim49813 жыл бұрын
Hey bro! I did everything that you said. And even I checked the code..one doubt is why did you set logic 1? And also.. my robot doesn't follow the line.. it moves but doesn't follow the line. Can someone help me out ? Thanks in advance
@guillaume84373 жыл бұрын
First of all, wiring is essential! You may need to adapt either the code or the pinout. Beware also of the sensors output! If the voltage difference of level is too low, you may not recognize the line. Another point is that I don't understand why in the code we have ANALOGREAD : if(digitalRead(left)==0 && digitalRead(right)==0){ else if(digitalRead(left)==0 && !ANALOGREAD(right)==0){ else if(!digitalRead(left)==0 && digitalRead(right)==0){ else if(!digitalRead(left)==0 && !digitalRead(right)==0){ I have not tried it but it doesn't look normal.
@dipayandutta99292 жыл бұрын
The same problem occurred! Even I changed that one '!analogread(right)' into '!digitalread(right)', Then also It was going straight and didn't follow the line. Also, I modified the path from narrow to broad, and the same things happened, It was going straight. The speed is also very high.
@FaseehAhmad-t3n10 ай бұрын
hello?
@FaseehAhmad-t3n10 ай бұрын
you said that your robot worked, do you have the robot now with you? if yes can you please tell how much voltage of power you are using?
@johnallenbundalian5945 жыл бұрын
waiting for the links of the codes. thank you in advance.
@DIYBuilder5 жыл бұрын
Send me your mail id
@Tharusha-du9cz5 жыл бұрын
Tharushanavidu5@gmail.com
@wafaatounzi77685 жыл бұрын
@@DIYBuilder wafaa.volunteer@gmail.com me too please
@johnallenbundalian5945 жыл бұрын
@@DIYBuilder bundalianallen6@gmail.com. This is my email thank you again
@seriryousra20985 жыл бұрын
Seriryousra@gmail.com Send me the code please i need it for my project in my high scool and i haven't time please help meee 😢😢😢
@SaptarshiSikder5 жыл бұрын
which software you use for video editing??
@DIYBuilder5 жыл бұрын
filmora
@SaptarshiSikder5 жыл бұрын
which version bro??
@abdulrahmanayman42645 жыл бұрын
i am doing this project but please help me with the code and link
@mohammadhassan95275 жыл бұрын
Have you got code?
@madhavanj54894 жыл бұрын
Did the line follower works perfectly for you
@gauravthegreat55484 жыл бұрын
How to open codes for line following robot....do u need a laptop for that....
@eliasmedelsosa91755 жыл бұрын
Thank You So Much
@jeffinjosephidicula35733 жыл бұрын
How we can add intermediate stations or intermediate stops in between track?
@sunitaDevi-gs8yn5 жыл бұрын
Plz send me the code brother
@htikarpleumasStore4 ай бұрын
How much did all the things cost??
@Vishal-hk6ps4 ай бұрын
1500 bro without wheels
@ruchijain14665 жыл бұрын
Pls sir tell the code
@Creation-mv2mv4 жыл бұрын
Watch my video for right code kzbin.info/www/bejne/sHiUYmyPfJKrnNU
@dineshc54235 жыл бұрын
can this line follower car work for other color of line other than black
@bibeksapkota6415 жыл бұрын
sir can you send me code please.
@shan_singh5 жыл бұрын
in description
@GEXO10003 жыл бұрын
Great video. It is a great project for my school exhibition!
@miguelvilla7455 жыл бұрын
friend help me with the arduino code
@Creation-mv2mv4 жыл бұрын
Watch my video for right code kzbin.info/www/bejne/sHiUYmyPfJKrnNU
@kushdeep2000 Жыл бұрын
Hi DIY Builder, i also tried building the same, however, L239 motor driver is not passing any commands to rotate motor (wheels are not rotating) using 9V batteries x 2. Wanted to know, if is power issue. Tried writing a new program just to rotate wheels, still nothing worked.
@anish2289 Жыл бұрын
I have the same problem what can I do bro
@jagatheeswarimanivasakan28965 жыл бұрын
i need the codes please
@robertrpsonwner63605 жыл бұрын
s
@sudheerdodamani1003 жыл бұрын
Can I use dc motor instead of wheel gear
@waliopubg3135 жыл бұрын
Where is the arduino code
@croydon21H5 жыл бұрын
looks like a selfish guy, so not giving code. why cant he upload to github