+ 353 21 48 98 333
sales@irishelectronics.ie


EDHHD Trading Ltd t/a Irish Electronics

The Burren, Lackaroe,

Glenbrook, Passage West,

Co Cork. T12 WD8E

0

Irish Distributors for Velleman & Kitronik 

Please Click Here to leave a review on TRUSTPILOT after your purchase and delivery

Kitronik LAB:bit educational platform for BBC micro:bit  REDUCED FROM €47.97 to €36.00     CLICK HERE

See our reduced prices on our LAB Bench Power Supplies   CLICK HERE


See our digital gift card. After the purchase, you will receive an email with the gift card and instructions on how to use it. The card can be used as payment for any products we have. CLICK HERE

Our Store

Water flow sensor flowmeter

€4.68
In stock: 15 available
Product Details

Water flow sensor flowmeter Hall flow sensor Module Water control 1-30L/min

The lowest rated working voltage: DC4.5 5V-24V

maximum operating current: 15 mA (DC 5V)

working voltage range: DC 5~18 v

load capacity: ≤ 10 mA (DC 5V)

use temperature: ≤ 80 ℃

operating humidity range: 35%~90%RH (no frost)

allowing pressure: pressure 1.75Mpa

temperature: -25~+80 ° c

External threads: 1/2"

Application:

water heaters, credit card machines, water vending machine, flow measurement device!

Package Included:

1 x Water flow sensor flowmeter Hall flow sensor Module Water control 1-30L/min

GENERAL USE :

1) You just need to connect to Arduino interrupt pin 2, and can measure the number of PWM pulse/interrupt per unit of time. The water flow would be directly proportional to the number of measured pulses. 2)Water flow sensor can be used to measure the flow of liquids, i.e. the consumption of liquids in industrial or domestic usage. For example you can make a robotic cocktail dispensing machine, and can use this sensors to accurately measure components like Soda, Water, etc. 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. Connection details: Red wire is +5V Black wire is GND White wire is PWM signal output Description: Lowest rated working voltage: DC4.5 5V-24V Maximum operating current: 15 mA (DC: 5V) Working voltage range: DC 5~18V Load capacity: ? 10 mA (DC 5V) Temperature: ? 80 ? Operating humidity range: 35%~90%RH (no frost) Allowed pressure: pressure 1.75Mpa Temperature: -25~+80

Features:

Model: YF-S201

Sensor Type: Hall effect

Working Voltage: 5 to 18V DC (min tested working voltage 4.5V)

Max current draw: 15mA @ 5V

Output Type: 5V TTL

Working Flow Rate: 1 to 30 Liters/Minute

Working Temperature range: -25 to +80℃

Working Humidity Range: 35%-80% RH

Accuracy: ±10%

Maximum water pressure: 2.0 MPa

Output duty cycle: 50% +-10%

Output rise time: 0.04us

Output fall time: 0.18us

Flow rate pulse characteristics: Frequency (Hz) = 7.5 * Flow rate (L/min)

Pulses per Liter: 450

Durability: minimum 300,000 cycles

Cable length: 15cm

1/2" nominal pipe connections, 0.78" outer diameter, 1/2" of thread

Size: 2.5" x 1.4" x 1.4"

Connection details:

Red wire : +5V

Black wire : GND

Yellow wire : PWM output.

Arduino Example Sketch Below:

/*

YF-S201 Hall Effect Water Flow Meter / Sensor

http://www.hobbytronics.co.uk/yf-s201-water-flow-m...

Read Water Flow Meter and output reading in litres/hour

*/

volatile int flow_frequency; // Measures flow meter pulses

unsigned int l_hour; // Calculated litres/hour

unsigned char flowmeter = 2; // Flow Meter Pin number

unsigned long currentTime;

unsigned long cloopTime;

void flow () // Interruot function

{

flow_frequency++;

}

void setup()

{

pinMode(flowmeter, INPUT);

Serial.begin(9600);

attachInterrupt(0, flow, RISING); // Setup Interrupt

// see http://arduino.cc/en/Reference/attachInterrupt

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. (Results in +/- 3% range)

l_hour = (flow_frequency * 60 / 7.5); // (Pulse frequency x 60 min) / 7.5Q = flow rate in L/hour

flow_frequency = 0; // Reset Counter

Serial.print(l_hour, DEC); // Print litres/hour

Serial.println(" L/hour");

}

}


Data Sheet
Save this product for later
Share this product with your friends
Water flow sensor flowmeter

Product out of stock? Contact us today for more information on restock dates and information!

Get in touch
Share by:
Privacy Policy Cookie Policy Privacy Policy