Unique Water Dispenser With Arduino Uno And Bluetooth Module || ARDUINO PROJECTS

Sdílet
Vložit
  • čas přidán 12. 09. 2024
  • Arduino Buying Link amzn.to/3RoF3OX
    _________________________________________________
    Hello friends i am back with another video . Are you looking for electronic projects for your collage or schools. so today i will see how you can make unique water dispenser with arduino uno .I hope you like it. do like and subscribe my channel.
    Code And Circuit Diagram Link -:shorturl.at/DIV14
    ___________________________________________
    * DO LIKE SHARE AND SUBSCRIBE
    ___________________________________________
    Business EMAIL & INQUIRIES
    * samaysahu700@gmail.com
    -------------------------------------------------------------------------------------------------------------------------------------------------------------
    --------------------------------------------------------------
    ------------------------------------------------------------------------------------------------
    * Social Media -- * facebook link - / samay.sahu.984
    * INSTAGRAM - sammy.pvtttt
    * instagram link - / sammy.pvtttt
    * TWITTER - robotechzone
    --------------------------------------------------------------------------------------------------------------------------------------------------------------
    #arduinoproject #waterdispenser #arduino #arduinorobot

Komentáře • 52

  • @shobika.g9462
    @shobika.g9462 Před rokem +2

    components name?

    • @robotechzone
      @robotechzone  Před rokem +8

      arduino uno
      HC-05 Bluetooth module
      lcd display 16x2
      wires
      water pump
      relay
      ultrasonic sensor
      potentimoter 10k

    • @venkatasaivinayneelapala4735
      @venkatasaivinayneelapala4735 Před rokem

      ​@@robotechzoneBroo, Why don't you provide components links to buy

    • @vanshkakkar4678
      @vanshkakkar4678 Před rokem +1

      Bhai ye bluetooth k bina bn skta h agar ban skta h toh thoda sa btado kase bnega

    • @mrknight3552
      @mrknight3552 Před rokem

      @@vanshkakkar4678 ham blutooth ke badle me internet use karke kar sakte hai esp32 use karke

    • @venkataharigopidronadula4535
      @venkataharigopidronadula4535 Před 11 měsíci

      ​@@robotechzonebro components cost

  • @Aftabalam-kh4fd
    @Aftabalam-kh4fd Před rokem +1

    Can you help me with a project, water fully machine? That includes a keypad to input the amount i need, and then relay turns on the motor so dispense water, water will flow through yf-s201 so that flow rate and volume of water flowed can ve calcultated thorugh it, and when desired amount is filled then relay turns off the motor

    • @robotechzone
      @robotechzone  Před rokem

      Yess it's easy we can make that DM me on you Instagram @robo_techzone or Sammy.pvtttt

  • @tomduplessis5483
    @tomduplessis5483 Před 9 měsíci

    What arduino kit did you use?

  • @tomduplessis5483
    @tomduplessis5483 Před 9 měsíci

    Can you please share the link of what kit you used

  • @user-lv8hc5tw9d
    @user-lv8hc5tw9d Před 5 měsíci

    bro need pcb design for this project

  • @vanshkakkar4678
    @vanshkakkar4678 Před rokem

    Bro mujhe ye usb ke sath connect krna h toh kya ap mujhe usb se connect hona wala app send kr skta ho ja fir mujhe bta skta ho ki apka diya hua app kase edit kru

  • @AdityaKumar-tp7em
    @AdityaKumar-tp7em Před rokem

    What kind of motor you are using in these can u give details about motor??

  • @miguel20yearsago
    @miguel20yearsago Před 11 měsíci

    Where does the USB connected to?

  • @ichigo1313
    @ichigo1313 Před rokem

    How is the ultrasonic sensor measuring the volume of water?

    • @Lyxcus
      @Lyxcus Před 11 měsíci

      The ultrasonic sensor is not measuring the volume of water. If you examine the code, you will see that it is used to detect whether the glass is under the pump.

  • @hiiamalice7586
    @hiiamalice7586 Před rokem

    How did you make the Android app? It looks like pure Java.

  • @AnandYadav-tu1nh
    @AnandYadav-tu1nh Před rokem

    Bhai ek number banaye ho lekin isme hum Arduino ka code apne app se kaise connect karenge?

  • @alangamings6830
    @alangamings6830 Před 9 měsíci

    Y blutooth is connected

  • @Raghul-rt6vq
    @Raghul-rt6vq Před rokem

    Sir plz put how to use blynk app and how to connect with device

  • @undergaming_
    @undergaming_ Před rokem

    App link.. Plzzz.. Bro

  • @vanshkakkar4678
    @vanshkakkar4678 Před rokem

    Bhai ye bluetooth k bina bn skta h agar ban skta h toh thoda sa btado kase bnega❤

  • @sipayeinnovator2468
    @sipayeinnovator2468 Před rokem

    Opencv how to install and arduino opencv project to starters

    • @robotechzone
      @robotechzone  Před rokem

      Opencv you can install from cmd ( pip install opencv- python

  • @Drow-_-zee
    @Drow-_-zee Před rokem

    How much would it cost can you reply asap pls....

  • @undergaming_
    @undergaming_ Před rokem

    Where's the code and diagram.. Link

  • @meetparekh7574
    @meetparekh7574 Před rokem +2

    Arduino code

    • @Death.bed68
      @Death.bed68 Před rokem +5

      #include
      LiquidCrystal lcd(12, 11, 5, 4, 3, 2); // set the LCD address to 0x3F for a 16 chars and 2 line display
      const int trigPin = 6; // Trigger pin of the ultrasonic sensor
      const int echoPin = 7; // Echo pin of the ultrasonic sensor
      int buzzer = 8;
      int motor = 9;
      char incomingByte;
      void setup() {
      Serial.begin(9600); // Initialize serial communication
      lcd.begin(16, 2); // Initialize the LCD display
      pinMode(trigPin, OUTPUT);
      pinMode(buzzer, OUTPUT);
      pinMode(motor, OUTPUT);
      lcd.clear();
      }
      void loop() {
      // Trigger the ultrasonic sensor
      digitalWrite(trigPin, LOW);
      delayMicroseconds(2);
      digitalWrite(trigPin, HIGH);
      delayMicroseconds(10);
      digitalWrite(trigPin, LOW);
      // Measure the duration of the echo pulse
      long duration = pulseIn(echoPin, HIGH);
      // Calculate the distance in centimeters
      float distance = duration * 0.034 / 2;
      if (distance > 10) {
      lcd.clear();
      lcd.setCursor(0, 0);
      lcd.print("PLACE YOUR GLASS");
      delay(1000);
      lcd.clear();
      }
      if (distance < 10) {
      lcd.setCursor(0, 0);
      lcd.print(" HOW MUCH WATER");
      lcd.setCursor(0, 1);
      lcd.print(" YOU WANT ");
      }
      if (Serial.available() > 0) {
      incomingByte = Serial.read();
      if (incomingByte == '1') {
      if (distance < 10) {
      Serial.println("Received: 1");
      lcd.clear();
      lcd.setCursor(0, 0);
      lcd.print("Filling Water...");
      digitalWrite(motor, HIGH);
      delay(4580);
      digitalWrite(motor, LOW);
      delay(1000);
      }
      }
      else if (incomingByte == '2') {
      lcd.clear();
      lcd.setCursor(0, 0);
      lcd.print("Filling Water...");
      digitalWrite(motor, HIGH);
      delay(9000);
      digitalWrite(motor, LOW);
      Serial.println("Received: 2");
      }
      else if (incomingByte == '3') {
      lcd.clear();
      lcd.setCursor(0, 0);
      lcd.print("Filling Water...");
      digitalWrite(motor, HIGH);
      delay(13500);
      digitalWrite(motor, LOW);
      Serial.println("Received: 3");
      }
      else if (incomingByte == '4') {
      lcd.clear();
      lcd.setCursor(0, 0);
      lcd.print("Filling Water...");
      digitalWrite(motor, HIGH);
      delay(18000);
      digitalWrite(motor, LOW);
      Serial.println("Received: 4");
      }
      else if (incomingByte == '5') {
      lcd.clear();
      lcd.setCursor(0, 0);
      lcd.print("Filling Water...");
      digitalWrite(motor, HIGH);
      delay(22500);
      digitalWrite(motor, LOW);
      Serial.println("Received: 5");
      }
      else if (incomingByte == '6') {
      lcd.clear();
      lcd.setCursor(0, 0);
      lcd.print("Filling Water...");
      digitalWrite(motor, HIGH);
      delay(22500);
      digitalWrite(motor, LOW);
      Serial.println("Received: 5");
      }
      }
      }

    • @meetparekh7574
      @meetparekh7574 Před rokem

      @@Death.bed68 thanks

    • @undergaming_
      @undergaming_ Před rokem

      How to copy the code

    • @I_don.t_know_6
      @I_don.t_know_6 Před 11 měsíci

      ​@@undergaming_drive.google.com/drive/u/0/mobile/folders/152Xvz84cKz2S9699eOWwIYJqwfakC4E5?usp=drive_link

  • @aparnasubramanian6660

    Bro circuit diagram plz

    • @robotechzone
      @robotechzone  Před rokem +1

      Check description

    • @aparnasubramanian6660
      @aparnasubramanian6660 Před rokem

      Is there is any report about this project available?? We are planning to do this as our main project

  • @yashwanthkumaryashwanthkum1316

    Bro u r using full code link will update in description box

  • @melrobultimate9385
    @melrobultimate9385 Před rokem

    BRO AM NOT ABLE TO CONNECT THE BLUETOOTH TO ROBO APPLICATION, BUT I AM ABLE TO PAIR THE BLUETOOTH WITH MY PHONES BLUETOOOTH, ANY SOLUTION???

  • @shreeniharika
    @shreeniharika Před rokem

    How much it costs to make

  • @simmagunakar1297
    @simmagunakar1297 Před rokem

    Bro please send me code