g3 4 Water Flow Sensor - Wiki
g3 4 Water Flow Sensor - Wiki
g3 4 Water Flow Sensor - Wiki
Contents
1 Introduction
2 Specification
3 Mechanic Dimensions
3.1 Sensor Components
4 Usage Example
4.1 Reading Water Flow rate with Water Flow Sensor
4.1.1 Hardware Installation
4.1.2 Programming
5 Wiring Diagram
6 Output Table
7 FAQ
8 Support
9 Version Tracker
10 Resource
11 See Also
12 Licensing
13 External Links
Introduction
Water flow sensor consists of a plastic valve body, a water rotor, and a hall-effect sensor. When water flows
through the rotor, rotor rolls. Its speed changes with different rate of flow. The hall-effect sensor outputs the
corresponding pulse Signal.
http://www.seeedstudio.com/wiki/G3/4_Water_Flow_sensor 1/7
29/9/2014 G3/4 Water Flow sensor - Wiki
↑TOP
Specification
Mini. Wokring Voltage DC 4.5V
Max. Working Current 15mA(DC 5V)
Working Voltage 5V~24V
Flow Rate Range 1~60L/min
Load Capacity ≤10mA(DC 5V)
Operating Temperature ≤80℃
Liquid Temperature ≤120℃
Operating Humidity 35%~90%RH
Water Pressure ≤2.0MPa
Storage Temperature -25℃~+80℃
Storage Humidity 25%~95%RH
Mechanic Dimensions
http://www.seeedstudio.com/wiki/G3/4_Water_Flow_sensor 2/7
29/9/2014 G3/4 Water Flow sensor - Wiki
Sensor Components
Usage Example
Note: This example is abstracted from the forum, which was done by Charles Gantt. Thanks for his
contribution.Let's see how it works.
This is part of a project I have been working on and I thought I would share it here since there have been a few
threads on how to read water flow rate in liters per hour using the Water Flow Sensor found in the Seeed
Studio Depo. It uses a simple rotating wheel that pulses a hall effect sensor. By reading these pulses and
implementing a little math, we can read the liquids flow rate accurate to within 3%. The threads are simple
G3/4 so finding barbed ends will not be that hard.
Hardware Installation
You will need Seeeduino / Arduino ,Water Flow Sensor,10K resistor,a breadboard and some jumper wires.
Wiring up the Water Flow Sensor is pretty simple. There are 3 wires: Black, Red, and Yellow. Black to the
Seeeduino's ground pin Red to Seeeduino's 5v pin The yellow wire will need to be connected to a 10k pull up
resistor.and then to pin 2 on the Seeeduino.
http://www.seeedstudio.com/wiki/G3/4_Water_Flow_sensor 3/7
29/9/2014 G3/4 Water Flow sensor - Wiki
Here is a fritzing diagram I made to show you how to wire it all up.
Once you have it wired up you will need to upload the following code to your Seeeduino. Once it is uploaded
and you have some fluid flowing through the Water Flow Sensor, you can open the serial monitor and it will
display the flow rate, refreshing every second.
Programming
// reading liquid flow rate using Seeeduino and Water Flow Sensor from Seeedstudio.com
// Code adapted by Charles Gantt from PC Fan RPM code written by Crenn @thebestcasescenario.com
// http:/themakersworkbench.com http://thebestcasescenario.com http://seeedstudio.com
http://www.seeedstudio.com/wiki/G3/4_Water_Flow_sensor 4/7
29/9/2014 G3/4 Water Flow sensor - Wiki
Serial.begin(9600); //This is the setup function where the serial port is
initialised,
attachInterrupt(0, rpm, RISING); //and the interrupt is attached
}
// the loop() method runs over and over again,
// as long as the Arduino has power
void loop ()
{
NbTopsFan = 0; //Set NbTops to 0 ready for calculations
sei(); //Enables interrupts
delay (1000); //Wait 1 second
cli(); //Disable interrupts
Calc = (NbTopsFan * 60 / 5.5); //(Pulse frequency x 60) / 5.5Q, = flow rate
in L/hour
Serial.print (Calc, DEC); //Prints the number calculated above
Serial.print (" L/hour\r\n"); //Prints "L/hour" and returns a new line
}
You can refer our forum for more details about Reading Water Flow rate with Water Flow Sensor
(http://www.seeedstudio.com/forum/viewtopic.php?f=4&t=989&p=3632#p3632) .
Wiring Diagram
The external diameter of thread the connections use is 1.4mm.
Output Table
Pulse frequency (Hz) in Horizontal Test= 5.5Q, Q is flow rate in L/min. (Results in +/- 3% range)
http://www.seeedstudio.com/wiki/G3/4_Water_Flow_sensor 5/7
29/9/2014 G3/4 Water Flow sensor - Wiki
FAQ
Here is the Sensors FAQ, people can go here to find questions and answers for this kind of products.
Version Tracker
Revision Descriptions Release
v1.0 Initial public release Feb 14, 2012
Resource
Reading Water Flow rate with Water Flow Sensor (http://www.seeedstudio.com/forum/viewtopic.php?
f=4&t=989&p=3632#p3632)
Water Flow rate display on LCD (http://www.practicalarduino.com/projects/water-flow-gauge)
datasheet for the material (http://garden.seeedstudio.com/images/4/4e/YEE70G30HSLNC..pdf)
See Also
Other related products and resources.
Licensing
http://www.seeedstudio.com/wiki/G3/4_Water_Flow_sensor 6/7
29/9/2014 G3/4 Water Flow sensor - Wiki
This documentation is licensed under the Creative Commons Attribution-ShareAlike License 3.0
(http://creativecommons.org/licenses/by-sa/3.0/) Source code and libraries are licensed under GPL/LGPL
(http://www.gnu.org/licenses/gpl.html) , see source code files for details.
External Links
Links to external webpages which provide more application ideas, documents/datasheet or software libraries.
http://www.seeedstudio.com/wiki/G3/4_Water_Flow_sensor 7/7