@@MuhammadAnsar I have 1 Question! why In line follower & obstacle avoidence code we did not use the stop function. if we use 4th "IF" condition and call the stop function will it mess up ?
Hey there! I'm one of your subscribers. I want a tutorial video for a obstacle picking line follower robot which picks up the obstacles when it comes in front and replace it to specific area and follow the line. Thank you!
Sir, thank you for giving me the code an d the circuit diagram. Sir, can you please make a video about how to make a Arduino Otto robot using Arduino nano and upload in your channel.
@@MuhammadAnsar Thank you, sir and please make a video about Arduino Otto Robot using Arduino nano, Can you teach me. I want to learn how to make the Arduino Otto robot using Arduino nano.
Can you explain in some detail this part of the code? long data(){ digitalWrite(trigpin,LOW); delayMicroseconds(2); digitalWrite(trigpin,HIGH); delayMicroseconds(10); duration=pulseIn (echopin,HIGH); return duration / 29 / 2; Especially this part return duration / 29 / 2; Why divide by 29 and then by 2, please reply quickly and thank you
its the code for the HC-SR04 Ultra Sonic sensor. Its sending and receiving a ping and the division is calculating the speed of sound to determine the distance of objects. its divided by 2 because the sound is making a round trip from the sensor, to the object, and then back. You divide to get the distance to the object instead of the round trip of the ping.
Sir mujhy line follower robot banana hy jismein wo red obstacle ko detect kary aur apni initial position per wapis pohanch jae memory ko use ker k to wo mein kesy banaon??
@@MuhammadAnsar agar koi tutorial hy to bata do k jesy hi obstacle detect kary to apni initial position per robot pohanch jae memmory mein location or turn save rakhy
Hello Muhammad Ansar, The robot looks nice, good job. I have a question though, does the robot know when he passes the object to avoid or is it a static routine that it does? If the routine is static, the robot would not be able to pass an object close to another object on the right side am I correct?
Very helpful, keep going brother. I'm doing Mechatronics and we have to do these things you know. Good content in short time,, much appreciated.
thank you
tq for that video sir. They are only youtubers who explain the whole code that was great
Thank you for appreciating me
Very nice 🇰🇼احسنت يا محمد
thank you
Allah Bless you.
This video just MashAllah.
thank you bro
@@MuhammadAnsar I have 1 Question!
why In line follower & obstacle avoidence code we did not use the stop function.
if we use 4th "IF" condition and call the stop function will it mess up ?
@@al-kamransabbir5225 bro mane wase hi ni use kia tha likn agr kr use krna ho ga tu ho jay ga
@@MuhammadAnsar Okey! thank you bro.
mai try kr k dekhun ga.
@@al-kamransabbir5225 ok welcome
Hey there!
I'm one of your subscribers.
I want a tutorial video for a obstacle picking line follower robot which picks up the obstacles when it comes in front and replace it to specific area and follow the line. Thank you!
ok I try my best
@@MuhammadAnsar For more details u can read the rules of International Robot Olympiad. And please make the robot on arduino UNO.
@@juhayeraltausif3908 ok
@@MuhammadAnsar And please explain how to move the robot backward! please!
saya suka dengan penjelasan yang baik,terimakasih ...
ide yang anda berikan,terimakasih sketh arduinonya...
salam dari indonesia
Keep it up very nice
thank u
bhai apka coding 1no hain
thank you
Thank you very much brother. Keep going on!
You are most welcome
Do you give tutions for robotics
yes
Can you tell me what that green surface with boxes and lines on it?
I want to get one
Sir iss mai aur Modification kr skte hai? jese ke agr Light seeking bhi bna le iss se and Wireless move kre ye ...bluetooth waghera se etc?
haaan g ho jay ga
Can i use 7.4v instead of power bank?
yes bro
Good project
thank you
@@MuhammadAnsar bhai nodmcu iot home automation par project bano jo google assistant voice se on ho
@@TechnicalMech ok
@@MuhammadAnsar me ne is par kam keya he blynk app ko use karky appliances on off hota he par Google assistant voice se appliance on ni hota
@@TechnicalMech ok bro
We have a project like this. Is it possible for us to use your code here? Can I get a copy of it?
bro send email
Sir, thank you for giving me the code an d the circuit diagram. Sir, can you please make a video about how to make a Arduino Otto robot using Arduino nano and upload in your channel.
ok bro i try
@@MuhammadAnsar Thank you, sir and please make a video about Arduino Otto Robot using Arduino nano, Can you teach me. I want to learn how to make the Arduino Otto robot using Arduino nano.
Hi there, can we incorporate voice control to this?
yes
Good Work
Good 👍
thank u
excellent job
ham siraf obstacal avoiding use kar sakty ha kia 2nd\ code ko use kar kay
yes
Is it okay to use 4 wheels and just add power source as well as adding a servo motor on it?
this code is not servo motor supported
@@MuhammadAnsar aww okay thanks^_^.
@@dawnheofon828 welcome
@@MuhammadAnsar i need your help bro
@@md.alaminshuvo5261 yes bro
Thank you sir
welcome
Which kit you used to the moter
Hey bro Can you use a battery other than a power bank, and if you use a battery the code is different, please help
What will happen if you do not set a track?
if you do not track it will not work line follower
Will it work with any tracks?
only dark color
@@MuhammadAnsar What abt different shape?
Can we use l293d other motor driver
Hi my friend. The powerbank when mA?
2000mah
Bro did it work for u
Is your ir sensor digital or analog
digital
Hi there , can you tell me what program did you use to make those Schematics ? By the way nice job , and nice project ! ^_^
send email
@@MuhammadAnsar sir code open nahi ho rha
Is same code can be used in PICmicrocontroller 18f
Hi there,
How is it done using raspberry pi?
Assalam-o-alaikum. Bhai can you make the voice control robot without arduino shield?
WAS ok bro
yar in sensers ki sense karny ki range kitni hoti ha maximum please btay
1.5 inch
what alternative power source I can use beside power bank
Nice bro
thank you
Where did I by the camponents and where the camponents list
bro..... can i use here 9V bettery. for this will be any change in code?
Yes use the 9 volt battery
yo bro could u explain wit hthis code ?
int frontdist;
long duration;
int setdist= 10;
what is the setdist mean? fast reply tq
the distance to the obstacle in front is set
Hi can I use l293d Motor driver
yes
@@MuhammadAnsar how please tell??
Is er diagram is possible in embedded projects???
If i m making without user data base entry
Buen proyecto👌🏻
Will it work on l293d motor driver
yes it's working l293d
Gud job
thank u
Can you explain in some detail this part of the code?
long data(){
digitalWrite(trigpin,LOW);
delayMicroseconds(2);
digitalWrite(trigpin,HIGH);
delayMicroseconds(10);
duration=pulseIn (echopin,HIGH);
return duration / 29 / 2;
Especially this part
return duration / 29 / 2;
Why divide by 29 and then by 2, please reply quickly and thank you
its the code for the HC-SR04 Ultra Sonic sensor. Its sending and receiving a ping and the division is calculating the speed of sound to determine the distance of objects. its divided by 2 because the sound is making a round trip from the sensor, to the object, and then back. You divide to get the distance to the object instead of the round trip of the ping.
@@TheSelfUnemployed I got it in the same day and make the project. Thanks any way
Hi bro ,
I request you to make this same project with l293d motor driver and Arduino uno please🙏
Please reply fast
ok
Can we use l293d motor driver with 2 l293d ics
@@jayabalasachala1724 yes
@@MuhammadAnsar How please tell
bro in my robot light is there .....but it's not moving why is that so @ MuhammadAnsar
Sir, please send me the Arduino uno code for this and What happens if the path intersecting?
Sir mujhy line follower robot banana hy jismein wo red obstacle ko detect kary aur apni initial position per wapis pohanch jae memory ko use ker k to wo mein kesy banaon??
bro ap kaha se ho
@@MuhammadAnsar For now i"m in islamabad and i"m doing Mechatronics engg so i need some help
@@MuhammadAnsar agar koi tutorial hy to bata do k jesy hi obstacle detect kary to apni initial position per robot pohanch jae memmory mein location or turn save rakhy
Visit my channel And see other line follower robot videos
sir hum Arduino Uno use kar sakte he kya iss project me and kaise . please help sr
haaan g arduino uno bhi use kr skty hy
@@MuhammadAnsar usaka connection kis tarah lagaye ....
can you please tell me how can i add dijkstra algorithm in this code
bro❤❤❤❤❤💜💜❤❤❤❤❤
thank you
@@MuhammadAnsar Brother I love your videos. Videos help me a lot. Continue, brother.💔
Hello Muhammad Ansar,
The robot looks nice, good job. I have a question though, does the robot know when he passes the object to avoid or is it a static routine that it does? If the routine is static, the robot would not be able to pass an object close to another object on the right side am I correct?
thank you
in this code only one Side move
Can I have the document for this project
Check the video description
Kitne tak banege project
2500 k karib
Sir kya ye 4wd car par work krega
yes bro
Does this program work for arduino UNO ??
yes same code work on Arduino UNO
Send me its code plz..
The code that you have provided isn't openig at all
Can we make this using Arduino Uno?
yes bro
@@MuhammadAnsar can you send the code for it please. I have my submission in 3 days
@@manpreet-kaurgrewal7708 send email
@@MuhammadAnsar manpreetgrewal1999@gmail.com
@@MuhammadAnsar can you send the code?
Hey bro can I use your code for my project?
yes bro Why not
can you send me the code for this on arduino uno
The same code will move to the Arduino UNO
ASSLAMU ALAYKUM ANSAR BHAI PLZ UPLOAD MOBILE OPRATE CAR ARDIUNO COD AS PER YOU LODED LINE FOLLOW CAR CODS PLZ PLZ
Sir I tried this project, but robot is not showing any movement. Pls help
Check hardware code is ok
Sir now one motor is moving forward and other reverse
Bro having the same problem robot is not moving did u fix it ? I m using uno
@@sain4007 hello did this work for u
Sir, instead of arduino nano in this case can we use arduino uno? for obstacle avoiding?
yes bro
can i get the perfect code
send email
chavanomkar189@gmail.com
@@omkarchavan1669 bro send me code bro please sunilsk12293@gmail.com
So it means the code in description is not correct
@@omkarchavan1669 can I get the code
In l298n motor driver (the one with enable pins
enable pins 5v
No man he asked that can we use the l298n motor driver the one with enable pins
And thats my account 😋😅😅
and sr app usaka code bhej sate ha kya...
Whats the cost of Project?
2k to 3k
Bhai ardino uno use karo
arduino ide download kro
@@MuhammadAnsar sir hamare pas ardino ide hey
Pan ye project hamaku ardino uno people banane la hey
@@shaikhfatru5540 yahi wla code use ho ga Arduino uno k liy bhi
@@MuhammadAnsar Masha Allaha
Thank you
@@shaikhfatru5540 welcome
Can you share the code for arduino uno with 4wheel robot
Same code apply for arduino uno with 4 wheel robot
@@MuhammadAnsar sir motor are not running with same code
I tried with two motors only, I am giving 9v battery
Pls help me!
sir can u send the line follower and obstical avoiding robot code mailchestara sir
Hi sir can you send me the code for arduino uno....
can i use arduino uno
yes
Hi I hv my project can I use ur code?
yes bro
Sp robotics right
Bro i need code for uno
code download for Description and same code apply Arduino UNO and NANO
sir i am making this one can you help me in this and send me the coding.
send email
@@MuhammadAnsar sir me Arduino uno use kr skti hu nano ji jgh??
Can u plz send the document
check the video description
Bro I want coding for arduino Uno
Can u send it to me
yes send email
@@MuhammadAnsar ducminh200119@gmail.com
Could you send me also the code for arduino uno carlosgsantacruz@gmail.com is my email
@@NguyenMinhuc-ns4wt can you send me the code for Arduino uno
Hello, I am making this project this semester, wil you please send me the code for using arduino uno? thank you so much
he has given the link below see it
I tried to make it and it took me 5 hours and didn't work
Arduino uno pe banao
ok
Hello , could you send me a code
Bhai mere ek madat krdo please
haaan g bro kia help kro ap ki
@@MuhammadAnsar Bhai mera project hai line follwer ka uskeiye mujhe code doa na
@@MuhammadAnsar ua-cam.com/video/Moq3O_q0rzw/v-deo.html same eysa usme ir, ultrasonic sensor bhi hey plzz
Same eisa chalney wala rook rook key please
Are bhai btao
Please reply
hat salla