How to Make Arduino based Smart Vacuum Cleaner Robot Best for Science Project

  Рет қаралды 927,999

Rizwan's Ideas

Rizwan's Ideas

Күн бұрын

Hi, friends in this video I will teach you How to Make A Smart Vacuum Cleaner Robot using waste materials like plastic bottle, lid &, etc. (West is the best).
So please like this video and share it with your friends. please help me to reach 100k subscribers
thanks for watching 😊
👇🏻Material used in this video with buying links 🔗👇🏻
- Gear motor with wheel amzn.to/2UDR7m6
- 12v AC to DC Power supply amzn.to/3jIfiYo
- Arduino Uno amzn.to/48zHrds
- Arduino motor shield amzn.to/2XP5Lbx
- Servo motor amzn.to/3jaNP3o
- Ultrasonic sensor amzn.to/46h2PTb
- 6v motor amzn.to/3goKmfs
- Lithium-ion battery cell amzn.to/48Ed6KN
🌟Other items 🌟
- Soldiers with wire amzn.to/45eTsSM
- Glue gun amzn.to/48Ttojg
- Glue sticks amzn.to/2GvjtG1
- Wires amzn.to/2DY5P8Z
- Super glue amzn.to/2GeiK8T
- Cardboard cutter amzn.to/2pIm1qN
- Penknife cutter amzn.to/2pL5wJR
- Black insulation tape amzn.to/2Geodwh
- Long Wooden stick amzn.to/2GvJLrY
.White paper
👇 Important links 👇
🌟Circuit diagram (in the video)
🌟Arduino code with the library
drive.google.com/file/d/1XFB8...
❤️share, support, subscribe!!!!!!❤️
🔥Help me to reach 100K subscribe👉kzbin.info/door/VGK...
Follow us:-
🌐 Instagram :- rizwans_ideas_?...
🌐Facebook :- / rizwans-idea. .
🌐LinkedIn :- / rizwan-s-. .
⭐For business enquiry & make a project please contact us:-
rizwansideas2@gmail.com
Chapter Sections Timestamp -
Intro: (00:00)
let's make : (01:08)
Making vacuum cleaner : (01:57)
Arduino setup : (02:57)
Coding : (03:20)
connections : (03:53)
Diagram : (04:43)
Assembly : (05:32)
Outro : (06:46)
Thanks for watching please like share & Subscribe 😊
________________________________________________________________________
🎶Music provider (NCS)
1 .LFZ Echoes • LFZ - Echoes | House |...
2 .tobu infectious • Video
3 .tobu seven • Video
#Arduino #arduinorobot #obstacleavoidingrobot

Пікірлер: 959
@Rizwansideas
@Rizwansideas 11 ай бұрын
if you can't Download the code.... Hare it's // Before uploading the code you have to install the necessary library// //AFMotor Library learn.adafruit.com/adafruit-motor-shield/library-install // //NewPing Library github.com/livetronic/Arduino-NewPing// //Servo Library github.com/arduino-libraries/Servo.git // // To Install the libraries go to sketch >> Include Library >> Add .ZIP File >> Select the Downloaded ZIP files From the Above links // #include #include #include #define TRIG_PIN A0 #define ECHO_PIN A1 #define MAX_DISTANCE 200 #define MAX_SPEED 190 // sets speed of DC motors #define MAX_SPEED_OFFSET 20 NewPing sonar(TRIG_PIN, ECHO_PIN, MAX_DISTANCE); AF_DCMotor motor1(1, MOTOR12_1KHZ); AF_DCMotor motor2(2, MOTOR12_1KHZ); AF_DCMotor motor3(3, MOTOR34_1KHZ); AF_DCMotor motor4(4, MOTOR34_1KHZ); Servo myservo; boolean goesForward=false; int distance = 100; int speedSet = 0; void setup() { myservo.attach(10); myservo.write(115); delay(2000); distance = readPing(); delay(100); distance = readPing(); delay(100); distance = readPing(); delay(100); distance = readPing(); delay(100); } void loop() { int distanceR = 0; int distanceL = 0; delay(40); if(distance=distanceL) { turnRight(); moveStop(); }else { turnLeft(); moveStop(); } }else { moveForward(); } distance = readPing(); } int lookRight() { myservo.write(50); delay(500); int distance = readPing(); delay(100); myservo.write(115); return distance; } int lookLeft() { myservo.write(170); delay(500); int distance = readPing(); delay(100); myservo.write(115); return distance; delay(100); } int readPing() { delay(70); int cm = sonar.ping_cm(); if(cm==0) { cm = 250; } return cm; } void moveStop() { motor1.run(RELEASE); motor2.run(RELEASE); motor3.run(RELEASE); motor4.run(RELEASE); } void moveForward() { if(!goesForward) { goesForward=true; motor1.run(FORWARD); motor2.run(FORWARD); motor3.run(FORWARD); motor4.run(FORWARD); for (speedSet = 0; speedSet < MAX_SPEED; speedSet +=2) // slowly bring the speed up to avoid loading down the batteries too quickly { motor1.setSpeed(speedSet); motor2.setSpeed(speedSet); motor3.setSpeed(speedSet); motor4.setSpeed(speedSet); delay(5); } } } void moveBackward() { goesForward=false; motor1.run(BACKWARD); motor2.run(BACKWARD); motor3.run(BACKWARD); motor4.run(BACKWARD); for (speedSet = 0; speedSet < MAX_SPEED; speedSet +=2) // slowly bring the speed up to avoid loading down the batteries too quickly { motor1.setSpeed(speedSet); motor2.setSpeed(speedSet); motor3.setSpeed(speedSet); motor4.setSpeed(speedSet); delay(5); } } void turnRight() { motor1.run(FORWARD); motor2.run(FORWARD); motor3.run(BACKWARD); motor4.run(BACKWARD); delay(500); motor1.run(FORWARD); motor2.run(FORWARD); motor3.run(FORWARD); motor4.run(FORWARD); } void turnLeft() { motor1.run(BACKWARD); motor2.run(BACKWARD); motor3.run(FORWARD); motor4.run(FORWARD); delay(500); motor1.run(FORWARD); motor2.run(FORWARD); motor3.run(FORWARD); motor4.run(FORWARD); }
@myideas9923
@myideas9923 11 ай бұрын
Amazing
@_fazalnjr_8308
@_fazalnjr_8308 11 ай бұрын
Did your model run ?
@princetondwal9961
@princetondwal9961 11 ай бұрын
Bro how will it work ?
@lishashetty7346
@lishashetty7346 11 ай бұрын
Does this same code work if we add bluetooth module in the project??
@user-jz6xv4gw5v
@user-jz6xv4gw5v 10 ай бұрын
Thnk u so much dua krna humara bhi acha bnjaye
@ylmazylmaz6967
@ylmazylmaz6967 11 ай бұрын
I always used to be a bit hesitant to buy a robot vacuum cleaner because of the price. I was worried that it would break down after a few uses. RobotNox changed my mind completely. It feels sturdy and looks sleek, and does not cost an arm or a leg like other brands.
@karaca19
@karaca19 11 ай бұрын
I needed to find a way to keep my floors clean without having to spend all day on my hands and knees trying to scrub the dirt away. I bought RobotNox and it works like a charm!
@tangchiawei9708
@tangchiawei9708 2 жыл бұрын
A very motivating project for the starters. Could you tell me what is the things connected to pin 13? In the coding.
@nobody10011
@nobody10011 Жыл бұрын
Need a project for my innovation class, this is perfect, tysm!
@kerem5990
@kerem5990 11 ай бұрын
I've had many vacuum cleaners over the years and RobotNox is by far the best I have ever used. It's suction power is impeccable and it can go for hours on end without stopping! The one thing I would say it needs to work on is its stair navigation, sometimes it gets stuck and isn't able to complete its task which can be frustrating.
@sanjivtoys7216
@sanjivtoys7216 Жыл бұрын
Thank you very much you're a brilliant man all students one 👍
@JUSTAtlas123
@JUSTAtlas123 11 ай бұрын
I'm a sucker for gadgets lol. I have to admit, my wife is really not. Which is why she was so against us buying a robot vacuum for the house. However, after RobotNox went out of their way to explain how the vacuuming process worked and how it could help us save time on our cleaning schedule, she felt much more comfortable with the purchase.
@pratibhadhami7523
@pratibhadhami7523 Жыл бұрын
Please make a arduino uno line following robot and show the wiring connections clearly as u have shown in this video. Thankyou.
@rojdatoplu683
@rojdatoplu683 11 ай бұрын
I have two cats, one of which is an escape artist and the other is a little on the chunky side. This means that my carpet was constantly dirty and smelly. I tried RobotNox as a last ditch effort to clean up my pet's messes and this vacuum cleaner robot has been a lifesaver! *And no, this is not an advertisement* hahaha.
@Jirayu.Kaewprateep
@Jirayu.Kaewprateep 11 ай бұрын
Hi, I found this VDO feed in the KZbin list and I think it can perform more than a vacuum cleaner. You can change it to an antenna for frequency detection, a camera or laser pointer device for pets or area.
@miracbadrak
@miracbadrak 11 ай бұрын
I have been using RobotNox for a year now. It has been the best vacuum robot I've ever had and it's really worth it. One of its biggest advantages is that it can map out the house and clean every nook and cranny. The app is also really simple to use which is always a plus.
@edgartoon1
@edgartoon1 Жыл бұрын
I have 2 questions, the first is the power supply that you put in the description, what is it for? and the other is, almost at the end of the video when you put the batteries in the car you make a cut and they already look different and with adhesive tape, what did you change in that part?
@edithflores1919
@edithflores1919 Жыл бұрын
Me podría decir cómo corto los PVC x favor
@kspanebisss9366
@kspanebisss9366 Жыл бұрын
​@@edithflores1919 I think with an exacto knife / creo que con un cuchillo exacto
@mxhdi_hxsn
@mxhdi_hxsn Жыл бұрын
The best way to happy your mom!
@FurkanHarmansah
@FurkanHarmansah 11 ай бұрын
*RobotNox - this vacuum cleaner* is the best I have ever had. Really.
@dreamworld4021
@dreamworld4021 Жыл бұрын
Bolatoo🗣 bantya🤘 kadak 😄 Mashallaha broo🤩
@chhabindraghadei4415
@chhabindraghadei4415 Жыл бұрын
It could be more better by adding a solar panel to charge the rechargeable batteries.
@florinspace3238
@florinspace3238 Жыл бұрын
You're Amazing! thank you for your incredible videos!
@koushikgatla2791
@koushikgatla2791 9 ай бұрын
Bro is it working or not.. ?
@Mitunkannan
@Mitunkannan 8 ай бұрын
Thank you for the new idea
@mnrf_mp
@mnrf_mp 2 жыл бұрын
ATL LAP STUDENTS LIKE
@ved_vv
@ved_vv Жыл бұрын
I'm in class 7
@VR_AGENT_FF
@VR_AGENT_FF Жыл бұрын
I am in 7 th
@VR_AGENT_FF
@VR_AGENT_FF Жыл бұрын
Amritavidyalayam school
@funfine2400
@funfine2400 Жыл бұрын
I'm of 10th
@tpmodh9813
@tpmodh9813 Жыл бұрын
I am grade 7
@MKBhai-bh5by
@MKBhai-bh5by 2 жыл бұрын
Bro can you please upload the circuit diagram ASAP
@mv_1k
@mv_1k 2 жыл бұрын
Sir, your project very usefully✌👌
@user-iw4ze6vr3v
@user-iw4ze6vr3v 6 ай бұрын
this is good idea now i use this project to do my project this year
@Rizwansideas
@Rizwansideas 5 ай бұрын
Thank you so much and good luck if you need this project or components so please WhatsApp up @+91 8141682492
@pratiksaha7240
@pratiksaha7240 Жыл бұрын
where do we get the back rotating blade wheel for the vacuum cleaner?? pls reply.....I am making it for my project
@jeremiahcoronado3719
@jeremiahcoronado3719 2 жыл бұрын
Do you have the instruction on how to make this i need it for my paper
@thesukanya8839
@thesukanya8839 2 жыл бұрын
Great Job bro 🤜🤛👍👏💯 🤩❤
@Rizwansideas
@Rizwansideas 2 жыл бұрын
Thank you
@ibrahimylmaz904
@ibrahimylmaz904 11 ай бұрын
I just bought a RobotNox and I have to say that I am very impressed. Thanks guys for recommending.
@burakk.48
@burakk.48 2 ай бұрын
What is robotnox? Was this a product promotional video?
@azharzoravarpathan392
@azharzoravarpathan392 2 жыл бұрын
Arre jordar 😍😍😍😍 Welcome back Rizwan
@misbahdalal9364
@misbahdalal9364 2 жыл бұрын
Masha Allah. Meritorious work 👏👏👏
@Rizwansideas
@Rizwansideas 2 жыл бұрын
Thank you
@RoyalGame_
@RoyalGame_ 2 жыл бұрын
Mantap👍, terimakasih ilmunya 🥰
@tomandfriends9536
@tomandfriends9536 2 жыл бұрын
Servo is not working
@user-sf5qb4ub9c
@user-sf5qb4ub9c 3 ай бұрын
​@@tomandfriends9536have you done or not me also not working
@biggbosstamil5702
@biggbosstamil5702 27 күн бұрын
Bro one doubt in this project whether the fan will rotate in clockwise or anticlockwise direction?? Pls tell bro
@sarmadnadeem8219
@sarmadnadeem8219 26 күн бұрын
Bhai only motor shilder mehh terminal lagany hin bettery k yaa ardunio mehh bhe or batteries ktni use kee hin
@prakateshb3107
@prakateshb3107 Жыл бұрын
what are disadvantages in smart vacuum cleaner?
@creepermite2642
@creepermite2642 Жыл бұрын
Hi there, would a normal motor driver work instead of the motor shield? thank you
@CircuitCrafterz
@CircuitCrafterz 4 ай бұрын
yes you can use l298n motor drivr
@raymond4165
@raymond4165 Жыл бұрын
Lovely work does it avoid obstacles
@badrrahioui6756
@badrrahioui6756 Жыл бұрын
very nice job!!
@sohelshaikh7281
@sohelshaikh7281 2 жыл бұрын
Outstanding bro, it's really amazing👍
@Rizwansideas
@Rizwansideas 2 жыл бұрын
Thank you so much
@ok.hf-1234
@ok.hf-1234 Жыл бұрын
Where do you use the 12v AC To DC power supply
@prishasinha3029
@prishasinha3029 Жыл бұрын
It's used in the motor
@ivvannnaaa9885
@ivvannnaaa9885 2 ай бұрын
Hey can you tell if the software program only can be use for arduino uno or it also can be use for other original uno ?
@crazyboygaming2736
@crazyboygaming2736 Жыл бұрын
Best project my dear
@aisharaza965
@aisharaza965 2 жыл бұрын
very nice project, well explained , Can you please tell which software you used to make the circuit diagram. really appreciated
@Rizwansideas
@Rizwansideas 2 жыл бұрын
Blender and after effects
@f4clutchgod510
@f4clutchgod510 2 жыл бұрын
@@Rizwansideas bro can we controll it with mobile also??
@Rizwansideas
@Rizwansideas 2 жыл бұрын
Yas you need Bluetooth module
@f4clutchgod510
@f4clutchgod510 2 жыл бұрын
@@Rizwansideas bro i wanted to say can we also add bluetooth mode to this project if we can can you guide 🥰
@meghana.mmeghana.m4126
@meghana.mmeghana.m4126 2 жыл бұрын
Sir can you explain it in own voice ..and add circuit diagram also explain it sir plz
@sounabhasikdar05
@sounabhasikdar05 Жыл бұрын
Will PCB be required for this project?
@utkuduman7231
@utkuduman7231 Жыл бұрын
no
@sabihashaikh500
@sabihashaikh500 2 жыл бұрын
Mashallah Rizwan Khan 🤩🤩 Good job Rizwan Khan 🥳😍👌👌
@Rizwansideas
@Rizwansideas 2 жыл бұрын
Thank you so much
@sabihashaikh500
@sabihashaikh500 2 жыл бұрын
Welcome 😊
@vinithsuvarna3569
@vinithsuvarna3569 Жыл бұрын
Mid blowing bro i love it
@princetondwal9961
@princetondwal9961 11 ай бұрын
Sir very greatful to you for sharing this tutorial ! Can you pls give a link for the accurate code of this video actually i want to make this same project so i need it ... Thanks
@princetondwal9961
@princetondwal9961 11 ай бұрын
Pls share it fast ...
@riyagurav4119
@riyagurav4119 Жыл бұрын
Program video is not clear
@N.S.Mestha
@N.S.Mestha 2 жыл бұрын
Hi I am fan of you Please make a opening a and closing mask
@salamchemical7691
@salamchemical7691 Жыл бұрын
Thank you sir❤❤
@andreeacarmenbeudean3040
@andreeacarmenbeudean3040 2 жыл бұрын
Love it! ❤️
@Rizwansideas
@Rizwansideas 2 жыл бұрын
Thanks
@boomber_man
@boomber_man 2 жыл бұрын
Love you
@shashankchintu183
@shashankchintu183 Жыл бұрын
Can u pls rply we have some dout
@shailsh3965
@shailsh3965 2 жыл бұрын
How area mapping was performed to ensure 100% coverage of Area considering there will be obstacles in between ?
@nhatdang9887
@nhatdang9887 Жыл бұрын
Ye
@aayushj7874
@aayushj7874 Жыл бұрын
Instead use phone controller or Voice and remove obstacle (you can still go with it but quite complicated)
@idksorry3782
@idksorry3782 Жыл бұрын
@@aayushj7874 and how to control it by phone ? any other youtube link ?
@aryakhobragade4071
@aryakhobragade4071 Жыл бұрын
Was really helpful
@Rubikscuberjunior
@Rubikscuberjunior 2 жыл бұрын
Can you please tell me that can we use 9v battery instead of the two lithium batteries !?
@Naddyyy.
@Naddyyy. 2 жыл бұрын
What is the use of 12V AC to DC power supply ?
@rgopu5588
@rgopu5588 Жыл бұрын
Why we want to use this
@HACKINGVERSE
@HACKINGVERSE Жыл бұрын
Are you controlling this robot from an app or this is automatic?
@chetananam9141
@chetananam9141 Жыл бұрын
The program controls it all.
@rafaysyed1871
@rafaysyed1871 Ай бұрын
@@chetananam9141 how does it turn on though? is there a switch?
@chetananam9141
@chetananam9141 Ай бұрын
@@rafaysyed1871 yes, an on-off switch is shown in the circuit diagram. The circuit diagram is shown after about 4.43 .
@Diamond-cheems
@Diamond-cheems 4 ай бұрын
bendiciones,muchas gracias saludos desde mexico ❤
@alesgg320
@alesgg320 3 ай бұрын
¿Te funcionó? A mi me da error la libreria de new ping
@mohammadanas3734
@mohammadanas3734 2 жыл бұрын
Intelligent👌👌👌
@zacnew7406
@zacnew7406 2 жыл бұрын
What is the use of AC to DC power supply?
@mehulchitte327
@mehulchitte327 Жыл бұрын
ac = dc so dc= ac + ca =dc
@drdrunkenstein8974
@drdrunkenstein8974 Жыл бұрын
@@mehulchitte327 bro not funny
@drdrunkenstein8974
@drdrunkenstein8974 Жыл бұрын
@@mehulchitte327 get a job+ratio+L+dont care
@taskinfaizan7348
@taskinfaizan7348 2 жыл бұрын
First
@mews56
@mews56 Жыл бұрын
More like how or where to buy one ?So when confined to the bed room can still control it to make sure it is doing the job correct
@jatinrathor4863
@jatinrathor4863 8 ай бұрын
kya ham isme ardiuno uno r3 ka use kr skte hain
@nerdaimz295ytofficial
@nerdaimz295ytofficial 11 күн бұрын
Btw may i ask if you did glued the arduino to the lid or not?
@aashishojha5474
@aashishojha5474 Жыл бұрын
an ideal youtuber
@biggbosstamil5702
@biggbosstamil5702 2 ай бұрын
Which sensor is used to observe the dust particles bro?
@shitalchandgude1413
@shitalchandgude1413 Жыл бұрын
Very nice I have made Project can you tell how much battery power you have used please tell me day after tomorrow my exhibition is there.
@cielistia
@cielistia Ай бұрын
hello, what did you put at the motor driver in 4:24? i bought the exact motor driver but mine doesn't have it. please reply, i am currently building this for my school project. thank you so much.
@pinkigupta4150
@pinkigupta4150 Жыл бұрын
What can we replace instead of gear motor
@AniketMengeAttractiveVlogs
@AniketMengeAttractiveVlogs Жыл бұрын
Agar mene 12v diya to kya circuit damage hoga ya nahi ya fhir chalega?
@NicoleArgarin
@NicoleArgarin 25 күн бұрын
Hi! Can you help me? When I uploaded the code it say's that it is in "compilation error" is there any suggestion forr you to recommend so that the code will work?
@v.rajendran5531
@v.rajendran5531 Жыл бұрын
I have a doubt do you connected with arduino app to move the vacuum cleaner
@hypertechroboticschool3858
@hypertechroboticschool3858 3 ай бұрын
Woooww.. Awesome
@vasanth5705
@vasanth5705 Жыл бұрын
Sir can you please tell can I use 300rpm gear motor instead for you motor in the video?
@MMSIOT
@MMSIOT 2 ай бұрын
very nice project
@hasnurnauwirahhisham1789
@hasnurnauwirahhisham1789 9 ай бұрын
where did u put the 12V AC to DC power supply??
@ajyolzade2172
@ajyolzade2172 Жыл бұрын
on which online platform I can do online simulation for this project? Or can you plz send simulation file?
@sahbajshaikh921
@sahbajshaikh921 2 жыл бұрын
अरे वाह बेटे वाह मोज़ करदी
@joshmedia7198
@joshmedia7198 Жыл бұрын
I have I stalled the v1 motor sheild library but it is having issues uploading the code what version of Arduino coding app are u using
@ushapawar7515
@ushapawar7515 2 жыл бұрын
Bro please upload the circuit of lulithum battery and button and charger
@nianshaxawan3831
@nianshaxawan3831 2 ай бұрын
Do you need to connected to the vacuum cleaner
@derivoid
@derivoid 5 ай бұрын
Love the video! One question- what do you use to make your circuit animation diagram, i.e. at 4:43 ? I want to use the application for one of my other projects for school.
@Rizwansideas
@Rizwansideas 5 ай бұрын
After effects and blender
@mubeenbeen1433
@mubeenbeen1433 2 жыл бұрын
beautiful
@AirmaxPneumaticsLTD
@AirmaxPneumaticsLTD 2 жыл бұрын
good work
@asifscraftsorigami4587
@asifscraftsorigami4587 2 жыл бұрын
Very super bro 👌 Wonderful idea
@Rizwansideas
@Rizwansideas 2 жыл бұрын
Thank you brother
@ROHANPATIL-xx2ji
@ROHANPATIL-xx2ji 5 ай бұрын
Broo which fan did you use pls tell name😢😢
@user-fs1fj8rn2c
@user-fs1fj8rn2c 8 ай бұрын
Can we get full kit with coding? What's the price if it is?
@hoshizora7875
@hoshizora7875 3 ай бұрын
Hello! Can this be built using ch340g?
@ajaymobile3056
@ajaymobile3056 Жыл бұрын
Can u do this for final year students ? How long it take to do this project?
@MIGSA.
@MIGSA. Жыл бұрын
Is there a way to make these cars drift been trying recently but I realized that the wheels have to turn to drift
@HCB0305
@HCB0305 5 ай бұрын
Buen e interesante proyecto, al inicio estuve con el problema del no funcionamiento del sensor ultrasonico y el servo motor. Debo afirmar que el codigo compartido es correcto, y el problema radicaba en las fuentes, las cuales sugiero sean independientes.
@Rizwansideas
@Rizwansideas 5 ай бұрын
Make sure to connections properly
@AniketMengeAttractiveVlogs
@AniketMengeAttractiveVlogs Жыл бұрын
If I give 12v power , fhir ye chal sakta hai kya
@Kira-gc2er
@Kira-gc2er 10 күн бұрын
Hello awesome video, where can i get the yellow vacuum fan?
@biggbosstamil5702
@biggbosstamil5702 29 күн бұрын
Is it mandatary to place capacitor in the motor???
@pranaygarapati1189
@pranaygarapati1189 2 жыл бұрын
Impressive
@manlaksa5961
@manlaksa5961 Жыл бұрын
Hello bro..how you connect the motor with propeller to the battery? And also the switch that you on at the motor with propeller..how you connect it
@Eren_Yeager_69
@Eren_Yeager_69 Жыл бұрын
12 v ac to dc power supply alternative link? 🙂
@spotlight_843
@spotlight_843 Жыл бұрын
Can we use big box for waste container please tell me
@Girish.022
@Girish.022 Жыл бұрын
Sir please replay Can we use power bank and connect it to Arduino....
@latios5070
@latios5070 2 жыл бұрын
Are the library files really necessary? Well,can I upload another random code instead of it?
@chessersarthak
@chessersarthak 2 жыл бұрын
Sir plz tell how you have joined battery with button with charging port plz sir
@TRAZExYT
@TRAZExYT Жыл бұрын
Awesome
@Mrbanglabeastusbd
@Mrbanglabeastusbd 7 ай бұрын
I watched this video for my school's project.
@Rizwansideas
@Rizwansideas 5 ай бұрын
Thank you so much. Yahi project banao 1st aaoge 😁. If need any components or full project please contact us on WhatsApp @+91 8141682492
How To Make A DIY Arduino Obstacle Avoiding Car At Home
6:09
DIY Builder
Рет қаралды 4,8 МЛН
Indian sharing by Secret Vlog #shorts
00:13
Secret Vlog
Рет қаралды 47 МЛН
Don't eat centipede 🪱😂
00:19
Nadir Sailov
Рет қаралды 23 МЛН
CleanSweep: The Floor Cleaning Robot- Part 1 | Constructing | DIY
10:56
How To Make Arduino Human Following Robot
6:26
DIY Builder
Рет қаралды 3,3 МЛН
Top 10 Arduino projects
21:41
Mr Innovative
Рет қаралды 1,2 МЛН
Obstacle Avoiding Robot Car Using An Arduino
10:40
Michael Klements
Рет қаралды 251 М.
Top 10 Arduino Projects 2023 | DIY Arduino Ideas
8:42
Nevon Projects
Рет қаралды 100 М.
WOW! Amazing DIY Bluetooth Robot Car - Control with Your Smartphone
6:43
Arduino All-in-One Robot
8:29
DIY Builder
Рет қаралды 1,2 МЛН
How To Make DIY Arduino Gesture Control Robot At Home
8:53
DIY Builder
Рет қаралды 741 М.
Apple iPhone 15 Pro Max With Smallrig Professional Photography kit #shorts
0:14
Huawei который почти как iPhone
0:53
Romancev768
Рет қаралды 263 М.
What’s your charging level??
0:14
Татьяна Дука
Рет қаралды 7 МЛН
Цифровые песочные часы с AliExpress
0:45