Arduino Water Flow Rate And Volume Measurement System

In this project, we will interface the Hall-Effect water flow sensor with Arduino for water flow rate and volume measurement system with LCD display. This is a useful project for industry and home or for water flow measurement applications like a water tap, tunnels, etc. It helps to identify the actual water flowing and also reduces wastage of water which is a huge problem in today’s world.

This project can be used commercially by shops to measure how much liquid flowing through a pipe or container and calculate the exact billing through this system.

Must Read Water Level Indicator

Project

Arduino Water Flow Rate And Volume Measurement System

Circuit Diagram

Water Flow Rate And Volume Measurement System Circuit Diagram

Components Required

  • Arduino Nano
  • 16×2 LCD Display
  • YF-S201 Water Flow Sensor
  • Wires
  • Breadboard
  • 5V Power Supply

Circuit Connection for Water Flow Rate And Volume Measurement System

To display the value at the LCD display, we need to connect the LCD pins 1, 3, 5, and 16 to GND and 2, and 15 to +5V VCC. Finally connect LCD pins 4, 6, 11, 12, 13, and 14 to the Arduino digital pins D7, D6, D5, D4, D3, D2.

Connect YFS201 hall effect water flow sensor’s VCC pins to +5V VCC and GND to the ground. Since it is an analog sensor, we should connect its analog pin to the A0 of the Arduino.

Features of YF-S201 Water Flow Sensor

  • Sensor Type: Hall Effect Sensor
  • Voltage Range: 4.5V to 18V DC Voltage
  • Maximum Current: 15mA
  • Output Type: 5V TTL
  • Flow Rate: 1-30 Liters/Min
  • Temperature Range: -25°C to +80°C
  • Humidity Range: 30%-80% RH
  • Accuracy: ±10%
  • Maximum Pressure: 2.0 MPa
  • Output Duty Cycle: 50%±10%
  • Pulses Per Liter: 450

Working Principle of Water Flow Rate And Volume Measurement System

The Arduino Water Flow Sensor for Flow Rate and Volume Measurement System works on the Hall-Effect principle. According to the hall effect principle, a voltage difference is induced in a conductor transverse to the electric current and the magnetic field perpendicular to it. Here, the Hall effect is utilized in the flow meter using a small fan/propeller-shaped rotor, which is placed in the path of the liquid flowing.

The liquid pushes against the fins of the rotor, causing it to rotate. The shaft of the rotor is connected to a Hall effect sensor. It is an arrangement of a current flowing coil and a magnet connected to the shaft of the rotor, thus a voltage/pulse is induced as this rotor rotates. In this flow meter, for every litre of liquid passing through it per minute, it outputs about 4.5 pulses. This is due to the changing magnetic field caused by the magnet attached to the rotor shaft. We measure the number of pulses using an Arduino and then calculate the flow rate in litres per hour (L/hr) and total volume in Litre using a simple conversion formula

Application of Water Flow Rate And Volume Measurement System

  • It is commonly used in HVAC systems, medical devices, chemical factories, and septic systems.
  • Water flow sensors are able to detect leakage, blockage, and pipe bursts due to contamination or pollution.
  • These are also usually used in domestic and various industrial sectors to measure the volume or mass of a liquid or gas, depending on the application.

Arduino Code

2 thoughts on “Arduino Water Flow Rate And Volume Measurement System”

  1. I am planning on using this design basis for a new project. Can you tell me if the program is accumulative in its volume measurement ( with intermittent cycles over a period of time) and can a “reset” button be added to zero the values for a restart of flow and volume

Leave a Comment