How to connect water flow sensor with arduino

Поделиться
HTML-код
  • Опубликовано: 1 фев 2025

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

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

    Great video and very good technology. Thank you Hydrokinetic Energy Corp. (HEC) Key West Fl.

  • @bhuvaneshpb6347
    @bhuvaneshpb6347 3 года назад

    Perfectly working and well explained..thanks 🥰

  • @ranjiths-z3d
    @ranjiths-z3d Год назад

    which arduino bro?
    then which arduino version ?

  • @XperiaLovers
    @XperiaLovers 4 года назад +1

    Wow! Great tutorial. May I know, if it is possible to connect 2 flow sensor on a single Arduino board?

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

    Nice video, thanks :)

  • @chinnuyadav-q3n
    @chinnuyadav-q3n 11 месяцев назад

    where can we find the liquid crystal app

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

    Thanks this helped a lot and works. I do have a question. When I compile your code I get the following warning: water_flow_sensor.ino:22:61: warning: invalid conversion from 'byte {aka unsigned char}' to 'void (*)()' [-fpermissive]
    attachInterrupt(t1FlowInterrupt, t1FlowPulseCount, FALLING); //you can use Rising or Falling

  • @muhammadhammoudeh9415
    @muhammadhammoudeh9415 4 года назад +1

    Hello @Robokart,
    What code is written after pinMode(flowsensor, INPUT)?

    • @pulkitthapar
      @pulkitthapar 4 года назад +3

      volatile int flow_frequency; // Measures flow sensor pulses
      unsigned int l_hour; // Calculated litres/hour
      unsigned char flowsensor = 2; // Sensor Input
      unsigned long currentTime;
      unsigned long cloopTime;
      void flow () // Interrupt function
      {
      flow_frequency++;
      }
      void setup()
      {
      pinMode(flowsensor, INPUT);
      digitalWrite(flowsensor, HIGH); // Optional Internal Pull-Up
      Serial.begin(9600);
      attachInterrupt(0, flow, RISING); // Setup Interrupt
      sei(); // Enable interrupts
      currentTime = millis();
      cloopTime = currentTime;
      }
      void loop ()
      {
      currentTime = millis();
      // Every second, calculate and print litres/hour
      if(currentTime >= (cloopTime + 1000))
      {
      cloopTime = currentTime; // Updates cloopTime
      // Pulse frequency (Hz) = 7.5Q, Q is flow rate in L/min.
      l_hour = (flow_frequency * 60 / 7.5); // (Pulse frequency x 60 min) / 7.5Q = flowrate in L/hour
      flow_frequency = 0; // Reset Counter
      Serial.print(l_hour, DEC); // Print litres/hour
      Serial.println(" L/hour");
      }
      }

  • @akmaljai1749
    @akmaljai1749 3 года назад

    Gow to display on lcd 16x2 (4 wire)

  • @PawanSharma-by9zt
    @PawanSharma-by9zt 4 года назад

    Will you provide me the Working of ultrasonic flow sensor of two pins (Red and White)??

  • @ennaiarindhal3141
    @ennaiarindhal3141 4 года назад

    Bro can be possible arduino readings upload in raspberry pi

  • @saumyayt2583
    @saumyayt2583 3 года назад

    *-*please provide link for buying the sensor-**

  • @bubba1984
    @bubba1984 4 года назад

    excellent project! Good work !

    • @Robokart
      @Robokart  4 года назад

      Thanks a lot! dont forget to share this video.

  • @CreativeTree
    @CreativeTree 4 года назад

    How to turn on the pump when there is flow and it will automatically turn it off if there is no flow

    • @CreativeTree
      @CreativeTree 4 года назад

      @@GThirivigiramaAbhishekG yes I found a system

    • @abhishekgopalakrishnan8688
      @abhishekgopalakrishnan8688 4 года назад

      @@CreativeTree can u please share that code or information regarding that, it would be much useful to me, thanks in advance

    • @ahmadarrabi1661
      @ahmadarrabi1661 4 года назад +1

      There are a special sensor for your application to turn on and Off a water pump when water is flowing you need to use this pressure controller you can buy on ebay enter this link on ebay
      www.ebay.com/itm/New-Automatic-Water-Pump-Pressure-Controller-Electronic-Pressure-Switch-145PSI/274596649097?hash=item3fef3c5889:g:FWgAAOSw0Z1fxhLl
      Follow instruction how to connect it. It is direction sensitive means you have to check where the side that says water in which connects directly to the pump and water out connect to your pipe or Faucet. ( In summary it connects in series with the water output side. Once you open the water faucet that you install after the unit, the pump turns on. Once you shut off the faucet after the pressure is built up inside the unit the pump shuts off)

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

    How about using Bluetooth HC 05 Arduino bro🥺

  • @mulyono-ur3bk
    @mulyono-ur3bk 3 года назад

    Give me water flow sensor library for proteus ,sir

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

    cant it measure ML?

  • @madhavgajjalwad9012
    @madhavgajjalwad9012 3 года назад

    Mam plz give me the flow meter programme/ software

  • @protechnology550
    @protechnology550 4 года назад +1

    How we can connect a 12V relay to it?

  • @jhonydepp7734
    @jhonydepp7734 4 года назад

    Mam provide me flow chart

  • @mr.sonuverma1320
    @mr.sonuverma1320 4 года назад

    I want this machine can you sell me i m from Myanmar

  • @earthpower1230
    @earthpower1230 4 года назад

    Make water ATM

  • @clipvideosubindo573
    @clipvideosubindo573 5 лет назад

    hai