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

Поделиться
HTML-код
  • Опубликовано: 3 июл 2024
  • 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👉ruclips.net/channel/UCVGK...
    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
  • НаукаНаука

Комментарии • 973

  • @Rizwansideas
    @Rizwansideas  Год назад +94

    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);
    }

  • @karaca19
    @karaca19 Год назад +4

    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!

  • @nobody10011
    @nobody10011 Год назад +7

    Need a project for my innovation class, this is perfect, tysm!

  • @ylmazylmaz6967
    @ylmazylmaz6967 Год назад +4

    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.

  • @tangchiawei9708
    @tangchiawei9708 2 года назад +42

    A very motivating project for the starters. Could you tell me what is the things connected to pin 13? In the coding.

  • @kerem5990
    @kerem5990 Год назад +7

    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 Год назад +3

    Thank you very much you're a brilliant man all students one 👍

  • @dreamworld4021
    @dreamworld4021 Год назад +2

    Bolatoo🗣 bantya🤘 kadak 😄
    Mashallaha broo🤩

  • @FurkanHarmansah
    @FurkanHarmansah Год назад

    *RobotNox - this vacuum cleaner* is the best I have ever had. Really.

  • @mxhdi_hxsn
    @mxhdi_hxsn Год назад +6

    The best way to happy your mom!

  • @rojdatoplu683
    @rojdatoplu683 Год назад +4

    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.

  • @Mitunkannan
    @Mitunkannan 9 месяцев назад +1

    Thank you for the new idea

  • @pratibhadhami7523
    @pratibhadhami7523 Год назад +11

    Please make a arduino uno line following robot and show the wiring connections clearly as u have shown in this video. Thankyou.

  • @florinspace3238
    @florinspace3238 2 года назад +7

    You're Amazing! thank you for your incredible videos!

  • @azharzoravarpathan392
    @azharzoravarpathan392 2 года назад +1

    Arre jordar 😍😍😍😍
    Welcome back Rizwan

  • @aashishojha5474
    @aashishojha5474 Год назад

    an ideal youtuber

  • @Jirayu.Kaewprateep
    @Jirayu.Kaewprateep Год назад +5

    Hi, I found this VDO feed in the RUclips 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.

  • @mv_1k
    @mv_1k 2 года назад +3

    Sir, your project very usefully✌👌

  • @user-iw4ze6vr3v
    @user-iw4ze6vr3v 7 месяцев назад +1

    this is good idea now i use this project to do my project this year

    • @Rizwansideas
      @Rizwansideas  6 месяцев назад

      Thank you so much and good luck if you need this project or components so please WhatsApp up @+91 8141682492

  • @crazyboygaming2736
    @crazyboygaming2736 Год назад +2

    Best project my dear

  • @thesukanya8839
    @thesukanya8839 2 года назад +3

    Great Job bro 🤜🤛👍👏💯 🤩❤

  • @RoyalGame_
    @RoyalGame_ 2 года назад +4

    Mantap👍, terimakasih ilmunya 🥰

    • @tomandfriends9536
      @tomandfriends9536 2 года назад +1

      Servo is not working

    • @user-sf5qb4ub9c
      @user-sf5qb4ub9c 4 месяца назад

      ​@@tomandfriends9536have you done or not me also not working

  • @ibrahimylmaz904
    @ibrahimylmaz904 Год назад +1

    I just bought a RobotNox and I have to say that I am very impressed. Thanks guys for recommending.

    • @burakk.48
      @burakk.48 3 месяца назад

      What is robotnox? Was this a product promotional video?

  • @salamchemical7691
    @salamchemical7691 Год назад

    Thank you sir❤❤

  • @misbahdalal9364
    @misbahdalal9364 2 года назад +8

    Masha Allah.
    Meritorious work 👏👏👏

  • @edgartoon1
    @edgartoon1 Год назад +18

    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

  • @JUSTAtlas123
    @JUSTAtlas123 Год назад +1

    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.

  • @miracbadrak
    @miracbadrak Год назад +1

    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.

  • @mnrf_mp
    @mnrf_mp 2 года назад +142

    ATL LAP STUDENTS LIKE

  • @chhabindraghadei4415
    @chhabindraghadei4415 Год назад +4

    It could be more better by adding a solar panel to charge the rechargeable batteries.

  • @sahbajshaikh921
    @sahbajshaikh921 2 года назад

    अरे वाह बेटे वाह मोज़ करदी

  • @sabihashaikh500
    @sabihashaikh500 2 года назад +2

    Mashallah Rizwan Khan 🤩🤩 Good job Rizwan Khan 🥳😍👌👌

  • @MKBhai-bh5by
    @MKBhai-bh5by 2 года назад +11

    Bro can you please upload the circuit diagram ASAP

  • @prakateshb3107
    @prakateshb3107 Год назад +4

    what are disadvantages in smart vacuum cleaner?

  • @vinithsuvarna3569
    @vinithsuvarna3569 2 года назад

    Mid blowing bro i love it

  • @aryakhobragade4071
    @aryakhobragade4071 Год назад

    Was really helpful

  • @jeremiahcoronado3719
    @jeremiahcoronado3719 2 года назад +5

    Do you have the instruction on how to make this i need it for my paper

  • @sohelshaikh7281
    @sohelshaikh7281 2 года назад +7

    Outstanding bro, it's really amazing👍

  • @badrrahioui6756
    @badrrahioui6756 Год назад +1

    very nice job!!

  • @Diamond-cheems
    @Diamond-cheems 5 месяцев назад +1

    bendiciones,muchas gracias saludos desde mexico ❤

    • @alesgg320
      @alesgg320 4 месяца назад

      ¿Te funcionó?
      A mi me da error la libreria de new ping

  • @creepermite2642
    @creepermite2642 Год назад +5

    Hi there, would a normal motor driver work instead of the motor shield? thank you

  • @nilaygaming716
    @nilaygaming716 2 года назад +3

    The wires of the motor of the bottle was connected to what

  • @MMSIOT
    @MMSIOT 3 месяца назад

    very nice project

  • @mohammadanas3734
    @mohammadanas3734 2 года назад +1

    Intelligent👌👌👌

  • @princetondwal9961
    @princetondwal9961 Год назад +3

    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

  • @sounabhasikdar05
    @sounabhasikdar05 Год назад +3

    Will PCB be required for this project?

  • @mubeenbeen1433
    @mubeenbeen1433 2 года назад +1

    beautiful

  • @AirmaxPneumaticsLTD
    @AirmaxPneumaticsLTD 2 года назад +2

    good work

  • @Naddyyy.
    @Naddyyy. 2 года назад +4

    What is the use of 12V AC to DC power supply ?

    • @rgopu5588
      @rgopu5588 Год назад

      Why we want to use this

  • @aisharaza965
    @aisharaza965 2 года назад +7

    very nice project, well explained , Can you please tell which software you used to make the circuit diagram. really appreciated

    • @Rizwansideas
      @Rizwansideas  2 года назад +4

      Blender and after effects

    • @f4clutchgod510
      @f4clutchgod510 2 года назад

      @@Rizwansideas bro can we controll it with mobile also??

    • @Rizwansideas
      @Rizwansideas  2 года назад +2

      Yas you need Bluetooth module

    • @f4clutchgod510
      @f4clutchgod510 2 года назад +1

      @@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 года назад +1

      Sir can you explain it in own voice ..and add circuit diagram also explain it sir plz

  • @raymond4165
    @raymond4165 Год назад +1

    Lovely work
    does it avoid obstacles

  • @pranaygarapati1189
    @pranaygarapati1189 2 года назад +1

    Impressive

  • @ok.hf-1234
    @ok.hf-1234 Год назад +14

    Where do you use the 12v AC To DC power supply

  • @andreeacarmenbeudean3040
    @andreeacarmenbeudean3040 2 года назад +9

    Love it! ❤️

  • @sanukaSanjaya-ty8db
    @sanukaSanjaya-ty8db 2 месяца назад +1

    පට්ටම

  • @hypertechroboticschool3858
    @hypertechroboticschool3858 4 месяца назад

    Woooww.. Awesome

  • @taskinfaizan7348
    @taskinfaizan7348 2 года назад +3

    First

  • @HACKINGVERSE
    @HACKINGVERSE Год назад +7

    Are you controlling this robot from an app or this is automatic?

    • @chetananam9141
      @chetananam9141 Год назад

      The program controls it all.

    • @rafaysyed1871
      @rafaysyed1871 2 месяца назад

      @@chetananam9141 how does it turn on though? is there a switch?

    • @chetananam9141
      @chetananam9141 2 месяца назад

      @@rafaysyed1871 yes, an on-off switch is shown in the circuit diagram. The circuit diagram is shown after about 4.43 .

  • @TRAZExYT
    @TRAZExYT Год назад +2

    Awesome

  • @N.S.Mestha
    @N.S.Mestha 2 года назад +1

    Hi
    I am fan of you
    Please make a opening a and closing mask

  • @shailsh3965
    @shailsh3965 2 года назад +16

    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 ?

  • @riyagurav4119
    @riyagurav4119 Год назад +4

    Program video is not clear

  • @pushpajaiswal2379
    @pushpajaiswal2379 2 года назад +1

    Bhsi maja aagsya yar

  • @nazimasultana8074
    @nazimasultana8074 2 года назад +1

    Very good 👌👌👌

  • @zacnew7406
    @zacnew7406 2 года назад +7

    What is the use of AC to DC power supply?

  • @EndlessTech
    @EndlessTech Год назад

    Nice video

  • @Mrbanglabeastusbd
    @Mrbanglabeastusbd 8 месяцев назад +1

    I watched this video for my school's project.

    • @Rizwansideas
      @Rizwansideas  6 месяцев назад

      Thank you so much. Yahi project banao 1st aaoge 😁.
      If need any components or full project please contact us on WhatsApp @+91 8141682492

  • @Inventor125
    @Inventor125 2 года назад +1

    Good idea

  • @asifscraftsorigami4587
    @asifscraftsorigami4587 2 года назад +2

    Very super bro 👌
    Wonderful idea

  • @yuvaneswaranarumugam1343
    @yuvaneswaranarumugam1343 2 года назад +1

    Love your editing boss. Hats off

  • @chanduchilakapalapalli119
    @chanduchilakapalapalli119 Год назад

    superrrrrrrrrrrrrrr

  • @pratiksaha7240
    @pratiksaha7240 Год назад +1

    where do we get the back rotating blade wheel for the vacuum cleaner??
    pls reply.....I am making it for my project

  • @yorqinoymeliqulova3424
    @yorqinoymeliqulova3424 2 года назад

    Zòr ekan

  • @pinkigupta4150
    @pinkigupta4150 Год назад +1

    What can we replace instead of gear motor

  • @HCB0305
    @HCB0305 6 месяцев назад

    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  6 месяцев назад +1

      Make sure to connections properly

  • @MusefTechnical
    @MusefTechnical 2 года назад +1

    ❤️❤️❤️

  • @shitalchandgude1413
    @shitalchandgude1413 Год назад +2

    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.

  • @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

  • @faizanpathan2164
    @faizanpathan2164 2 года назад +1

    Very nice

  • @singingzone3056
    @singingzone3056 2 года назад +1

    Very good

  • @chitravaramballi
    @chitravaramballi Год назад

    nice

  • @Rubikscuberjunior
    @Rubikscuberjunior 2 года назад +1

    Can you please tell me that can we use 9v battery instead of the two lithium batteries !?

  • @hasnurnauwirahhisham1789
    @hasnurnauwirahhisham1789 10 месяцев назад +2

    where did u put the 12V AC to DC power supply??

  • @nwafxd
    @nwafxd 2 года назад +1

    WOW MAsha allah good keep going

  • @biggbosstamil5702
    @biggbosstamil5702 2 месяца назад +1

    Bro one doubt in this project whether the fan will rotate in clockwise or anticlockwise direction?? Pls tell bro

  • @ajaymobile3056
    @ajaymobile3056 Год назад

    Can u do this for final year students ? How long it take to do this project?

  • @biggbosstamil5702
    @biggbosstamil5702 3 месяца назад +1

    Which sensor is used to observe the dust particles bro?

  • @balamurali3176
    @balamurali3176 8 месяцев назад

    Mass

  • @sarmadnadeem8219
    @sarmadnadeem8219 2 месяца назад

    Bhai only motor shilder mehh terminal lagany hin bettery k yaa ardunio mehh bhe or batteries ktni use kee hin

  • @sabarizwan3165
    @sabarizwan3165 2 года назад +2

    Good ❤️❤️❤️❤️💖💞

  • @ushapawar7515
    @ushapawar7515 2 года назад +2

    Bro please upload the circuit of lulithum battery and button and charger

  • @swethamanju9467
    @swethamanju9467 Год назад

    Super idea but I am not understanding how to buy the things u used

  • @AbdulAziz0704
    @AbdulAziz0704 2 года назад +1

    Cool👌👌👌

  • @jatinrathor4863
    @jatinrathor4863 9 месяцев назад

    kya ham isme ardiuno uno r3 ka use kr skte hain

  • @Eren_Yeager_69
    @Eren_Yeager_69 Год назад +2

    12 v ac to dc power supply alternative link? 🙂

  • @nianshaxawan3831
    @nianshaxawan3831 4 месяца назад +1

    Do you need to connected to the vacuum cleaner

  • @mamabadhai2607
    @mamabadhai2607 Год назад

    What is used to move the vaccum cleaner???

  • @ROHANPATIL-xx2ji
    @ROHANPATIL-xx2ji 6 месяцев назад +1

    Broo which fan did you use pls tell name😢😢

  • @spotlight_843
    @spotlight_843 Год назад

    Can we use big box for waste container please tell me

  • @KaBADI9
    @KaBADI9 9 месяцев назад +1

    Bro we can put 9v battary