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

  Рет қаралды 899,092

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👉kzfaq.info/love/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

Пікірлер: 937
@Rizwansideas
@Rizwansideas 10 ай бұрын
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 10 ай бұрын
Amazing
@_fazalnjr_8308
@_fazalnjr_8308 10 ай бұрын
Did your model run ?
@princetondwal9961
@princetondwal9961 10 ай бұрын
Bro how will it work ?
@lishashetty7346
@lishashetty7346 10 ай бұрын
Does this same code work if we add bluetooth module in the project??
@user-jz6xv4gw5v
@user-jz6xv4gw5v 9 ай бұрын
Thnk u so much dua krna humara bhi acha bnjaye
@kerem5990
@kerem5990 10 ай бұрын
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.
@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.
@karaca19
@karaca19 10 ай бұрын
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!
@ylmazylmaz6967
@ylmazylmaz6967 10 ай бұрын
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.
@nobody10011
@nobody10011 Жыл бұрын
Need a project for my innovation class, this is perfect, tysm!
@sanjivtoys7216
@sanjivtoys7216 Жыл бұрын
Thank you very much you're a brilliant man all students one 👍
@dreamworld4021
@dreamworld4021 Жыл бұрын
Bolatoo🗣 bantya🤘 kadak 😄 Mashallaha broo🤩
@FurkanHarmansah
@FurkanHarmansah 10 ай бұрын
*RobotNox - this vacuum cleaner* is the best I have ever had. Really.
@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 10 ай бұрын
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.
@JUSTAtlas123
@JUSTAtlas123 10 ай бұрын
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.
@mxhdi_hxsn
@mxhdi_hxsn Жыл бұрын
The best way to happy your mom!
@Jirayu.Kaewprateep
@Jirayu.Kaewprateep 10 ай бұрын
Hi, I found this VDO feed in the KZfaq 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 10 ай бұрын
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.
@azharzoravarpathan392
@azharzoravarpathan392 2 жыл бұрын
Arre jordar 😍😍😍😍 Welcome back Rizwan
@florinspace3238
@florinspace3238 Жыл бұрын
You're Amazing! thank you for your incredible videos!
@koushikgatla2791
@koushikgatla2791 8 ай бұрын
Bro is it working or not.. ?
@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 11 ай бұрын
​@@edithflores1919 I think with an exacto knife / creo que con un cuchillo exacto
@Mitunkannan
@Mitunkannan 7 ай бұрын
Thank you for the new idea
@user-iw4ze6vr3v
@user-iw4ze6vr3v 5 ай бұрын
this is good idea now i use this project to do my project this year
@Rizwansideas
@Rizwansideas 4 ай бұрын
Thank you so much and good luck if you need this project or components so please WhatsApp up @+91 8141682492
@mv_1k
@mv_1k 2 жыл бұрын
Sir, your project very usefully✌👌
@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
@crazyboygaming2736
@crazyboygaming2736 Жыл бұрын
Best project my dear
@aashishojha5474
@aashishojha5474 Жыл бұрын
an ideal youtuber
@chhabindraghadei4415
@chhabindraghadei4415 Жыл бұрын
It could be more better by adding a solar panel to charge the rechargeable batteries.
@misbahdalal9364
@misbahdalal9364 2 жыл бұрын
Masha Allah. Meritorious work 👏👏👏
@Rizwansideas
@Rizwansideas 2 жыл бұрын
Thank you
@salamchemical7691
@salamchemical7691 Жыл бұрын
Thank you sir❤❤
@aryakhobragade4071
@aryakhobragade4071 Жыл бұрын
Was really helpful
@thesukanya8839
@thesukanya8839 2 жыл бұрын
Great Job bro 🤜🤛👍👏💯 🤩❤
@Rizwansideas
@Rizwansideas 2 жыл бұрын
Thank you
@MKBhai-bh5by
@MKBhai-bh5by 2 жыл бұрын
Bro can you please upload the circuit diagram ASAP
@N.S.Mestha
@N.S.Mestha 2 жыл бұрын
Hi I am fan of you Please make a opening a and closing mask
@raymond4165
@raymond4165 Жыл бұрын
Lovely work does it avoid obstacles
@RoyalGame_
@RoyalGame_ 2 жыл бұрын
Mantap👍, terimakasih ilmunya 🥰
@tomandfriends9536
@tomandfriends9536 Жыл бұрын
Servo is not working
@user-sf5qb4ub9c
@user-sf5qb4ub9c 2 ай бұрын
​@@tomandfriends9536have you done or not me also not working
@jeremiahcoronado3719
@jeremiahcoronado3719 2 жыл бұрын
Do you have the instruction on how to make this i need it for my paper
@ibrahimylmaz904
@ibrahimylmaz904 10 ай бұрын
I just bought a RobotNox and I have to say that I am very impressed. Thanks guys for recommending.
@burakk.48
@burakk.48 Ай бұрын
What is robotnox? Was this a product promotional video?
@vinithsuvarna3569
@vinithsuvarna3569 Жыл бұрын
Mid blowing bro i love it
@sohelshaikh7281
@sohelshaikh7281 2 жыл бұрын
Outstanding bro, it's really amazing👍
@Rizwansideas
@Rizwansideas 2 жыл бұрын
Thank you so much
@creepermite2642
@creepermite2642 Жыл бұрын
Hi there, would a normal motor driver work instead of the motor shield? thank you
@CircuitCrafterz
@CircuitCrafterz 3 ай бұрын
yes you can use l298n motor drivr
@mohammadanas3734
@mohammadanas3734 2 жыл бұрын
Intelligent👌👌👌
@badrrahioui6756
@badrrahioui6756 Жыл бұрын
very nice job!!
@prakateshb3107
@prakateshb3107 Жыл бұрын
what are disadvantages in smart vacuum cleaner?
@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
@sabihashaikh500
@sabihashaikh500 2 жыл бұрын
Mashallah Rizwan Khan 🤩🤩 Good job Rizwan Khan 🥳😍👌👌
@Rizwansideas
@Rizwansideas 2 жыл бұрын
Thank you so much
@sabihashaikh500
@sabihashaikh500 2 жыл бұрын
Welcome 😊
@pratiksaha7240
@pratiksaha7240 Жыл бұрын
where do we get the back rotating blade wheel for the vacuum cleaner?? pls reply.....I am making it for my project
@ok.hf-1234
@ok.hf-1234 Жыл бұрын
Where do you use the 12v AC To DC power supply
@prishasinha3029
@prishasinha3029 11 ай бұрын
It's used in the motor
@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
@MMSIOT
@MMSIOT Ай бұрын
very nice project
@Diamond-cheems
@Diamond-cheems 3 ай бұрын
bendiciones,muchas gracias saludos desde mexico ❤
@alesgg320
@alesgg320 2 ай бұрын
¿Te funcionó? A mi me da error la libreria de new ping
@princetondwal9961
@princetondwal9961 10 ай бұрын
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 10 ай бұрын
Pls share it fast ...
@sounabhasikdar05
@sounabhasikdar05 Жыл бұрын
Will PCB be required for this project?
@utkuduman7231
@utkuduman7231 Жыл бұрын
no
@sahbajshaikh921
@sahbajshaikh921 2 жыл бұрын
अरे वाह बेटे वाह मोज़ करदी
@AirmaxPneumaticsLTD
@AirmaxPneumaticsLTD 2 жыл бұрын
good work
@Naddyyy.
@Naddyyy. 2 жыл бұрын
What is the use of 12V AC to DC power supply ?
@rgopu5588
@rgopu5588 Жыл бұрын
Why we want to use this
@riyagurav4119
@riyagurav4119 Жыл бұрын
Program video is not clear
@hasnurnauwirahhisham1789
@hasnurnauwirahhisham1789 8 ай бұрын
where did u put the 12V AC to DC power supply??
@mubeenbeen1433
@mubeenbeen1433 2 жыл бұрын
beautiful
@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 ?
@HACKINGVERSE
@HACKINGVERSE Жыл бұрын
Are you controlling this robot from an app or this is automatic?
@chetananam9141
@chetananam9141 Жыл бұрын
The program controls it all.
@rafaysyed1871
@rafaysyed1871 16 күн бұрын
@@chetananam9141 how does it turn on though? is there a switch?
@chetananam9141
@chetananam9141 15 күн бұрын
@@rafaysyed1871 yes, an on-off switch is shown in the circuit diagram. The circuit diagram is shown after about 4.43 .
@Mrbanglabeastusbd
@Mrbanglabeastusbd 6 ай бұрын
I watched this video for my school's project.
@Rizwansideas
@Rizwansideas 4 ай бұрын
Thank you so much. Yahi project banao 1st aaoge 😁. If need any components or full project please contact us on WhatsApp @+91 8141682492
@hypertechroboticschool3858
@hypertechroboticschool3858 2 ай бұрын
Woooww.. Awesome
@taskinfaizan7348
@taskinfaizan7348 2 жыл бұрын
First
@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
@pranaygarapati1189
@pranaygarapati1189 2 жыл бұрын
Impressive
@TRAZExYT
@TRAZExYT Жыл бұрын
Awesome
@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.
@asifscraftsorigami4587
@asifscraftsorigami4587 2 жыл бұрын
Very super bro 👌 Wonderful idea
@Rizwansideas
@Rizwansideas 2 жыл бұрын
Thank you brother
@user-fs1fj8rn2c
@user-fs1fj8rn2c 7 ай бұрын
Can we get full kit with coding? What's the price if it is?
@HCB0305
@HCB0305 4 ай бұрын
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 4 ай бұрын
Make sure to connections properly
@yuvaneswaranarumugam1343
@yuvaneswaranarumugam1343 2 жыл бұрын
Love your editing boss. Hats off
@Rizwansideas
@Rizwansideas 2 жыл бұрын
Thank you so much 😀
@Rubikscuberjunior
@Rubikscuberjunior 2 жыл бұрын
Can you please tell me that can we use 9v battery instead of the two lithium batteries !?
@EndlessTech
@EndlessTech Жыл бұрын
Nice video
@easyartscrafts6902
@easyartscrafts6902 8 ай бұрын
What is the name of the wire you inserted in the motor shield
@nazimasultana8074
@nazimasultana8074 2 жыл бұрын
Very good 👌👌👌
@Rizwansideas
@Rizwansideas 2 жыл бұрын
Thank you
@Sathvik6969
@Sathvik6969 8 ай бұрын
Bro literally gave the link of plastic tray and bottle😂😂
@Rizwansideas
@Rizwansideas 4 ай бұрын
😂😂😅
@ushapawar7515
@ushapawar7515 2 жыл бұрын
Bro please upload the circuit of lulithum battery and button and charger
@pinkigupta4150
@pinkigupta4150 Жыл бұрын
What can we replace instead of gear motor
@jatinrathor4863
@jatinrathor4863 6 ай бұрын
kya ham isme ardiuno uno r3 ka use kr skte hain
@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
@vasanth5705
@vasanth5705 Жыл бұрын
Sir can you please tell can I use 300rpm gear motor instead for you motor in the video?
@pushpajaiswal2379
@pushpajaiswal2379 2 жыл бұрын
Bhsi maja aagsya yar
@Inventor125
@Inventor125 2 жыл бұрын
Good idea
@Rizwansideas
@Rizwansideas 2 жыл бұрын
Thank you
@biggbosstamil5702
@biggbosstamil5702 Ай бұрын
Which sensor is used to observe the dust particles bro?
@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
@chanduchilakapalapalli119
@chanduchilakapalapalli119 Жыл бұрын
superrrrrrrrrrrrrrr
@chessersarthak
@chessersarthak 2 жыл бұрын
Sir plz tell how you have joined battery with button with charging port plz sir
@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
@Sumlilpunk
@Sumlilpunk 5 ай бұрын
Can u please state what the name is of the white pipe like item u made to build the vacuum suction thing or where you bought it
@Rizwansideas
@Rizwansideas 4 ай бұрын
Please contact us on WhatsApp @+91 8141682492 for more details
@gulsenmorkurt
@gulsenmorkurt 10 ай бұрын
RobotNox is cheap, very functional and has a permanent warranty.
@v.rajendran5531
@v.rajendran5531 Жыл бұрын
I have a doubt do you connected with arduino app to move the vacuum cleaner
@KaBADI9
@KaBADI9 7 ай бұрын
Bro we can put 9v battary
@swethamanju9467
@swethamanju9467 Жыл бұрын
Super idea but I am not understanding how to buy the things u used
@cielistia
@cielistia 13 күн бұрын
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.
@ArushAnimeEdit
@ArushAnimeEdit 8 ай бұрын
I qm you subscriber Can You please make coding tutorial of this Smart vacuum cleaner please
@derivoid
@derivoid 4 ай бұрын
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 4 ай бұрын
After effects and blender
@nianshaxawan3831
@nianshaxawan3831 Ай бұрын
Do you need to connected to the vacuum cleaner
@idrismadraswala6527
@idrismadraswala6527 2 жыл бұрын
Hi sir i am ur very big fan i just wanted to know as i am making this project u mentioned a power supply Can i know where did u Use that??
@Rizwansideas
@Rizwansideas 2 жыл бұрын
Thanks for a support ❤️ I Use Power supply for battery charge
@yorqinoymeliqulova3424
@yorqinoymeliqulova3424 2 жыл бұрын
Zòr ekan
@ajyolzade2172
@ajyolzade2172 Жыл бұрын
on which online platform I can do online simulation for this project? Or can you plz send simulation file?
@Eren_Yeager_69
@Eren_Yeager_69 Жыл бұрын
12 v ac to dc power supply alternative link? 🙂
How To Make A DIY Arduino Obstacle Avoiding Car At Home
6:09
DIY Builder
Рет қаралды 4,7 МЛН
Top 10  Arduino Projects 2020 | Awesome Idea for winning Science Project
9:24
What Happens If You Trap Smoke In a Ball?
00:58
A4
Рет қаралды 16 МЛН
skibidi toilet 73 (part 1)
04:46
DaFuq!?Boom!
Рет қаралды 30 МЛН
From Brains to Bot: Arduino's Next-Level Journey with AI.
7:26
DIY Builder
Рет қаралды 283 М.
How To Make Arduino Human Following Robot
6:26
DIY Builder
Рет қаралды 3,2 МЛН
Top 10 Robotics Projects for Students and Engineers | DIY Robots Ideas
10:30
10 заповедей по пайке. Учимся паять
12:05
Voice Control Humanoid Robot - for Hotels waiter work Best Project
9:41
Harish Projects
Рет қаралды 209 М.
WOW! Amazing DIY Bluetooth Robot Car - Control with Your Smartphone
6:43
How To Make DIY Arduino Gesture Control Robot At Home
8:53
DIY Builder
Рет қаралды 733 М.
How I Built My Own Self-Navigating Vacuum Cleaner
13:16
SciNix
Рет қаралды 24 М.
I tried OVERPOWERING my Vacuum! (Homemade Turbine)
11:42
GreatScott!
Рет қаралды 1,7 МЛН
3 Creative ideas from Arduino
9:48
The Wrench
Рет қаралды 3,9 МЛН
Самый маленький игровой ПК
0:46
ITMania - Сборка ПК
Рет қаралды 322 М.
У Nokia 3310 появился конкурент
0:36
AndroHack
Рет қаралды 1,8 МЛН
Как открыть дверь в Jaecoo J8? Удобно?🤔😊
0:27
Суворкин Сергей
Рет қаралды 775 М.
Нужен ли робот пылесос?
0:54
Катя и Лайфхаки
Рет қаралды 786 М.