Product images are for informational purposes only and may vary slightly depending on the batch and supplier. Product specifications and prices may be subject to change without notice. We do our best to provide accurate and complete product specifications, but they may not be completely accurate. If you encounter any such situation, please let us know.
The product is intended for specialists and requires qualified and authorized personnel. The product does not include assembly/use instructions . Putting the product into operation by unqualified persons leads to the loss of the warranty according to the Terms and Conditions on the site.
The specified technical parameters (current, power, etc.) represent maximum allowable values under ideal operating conditions. For safe use and optimal lifespan, it is recommended to operate the product continuously at no more than 50% of the specified maximum values.
Flow sensor 0.3-6l/min, YF-S401, 120 degrees
The YF-S401 flowmeter measures liquid flow between 0.3 and 6 l/min, using a stainless steel ball rotor and Hall sensor, providing easy-to-read PWM output with Arduino or other controllers. It operates at 6V, has low consumption and supports pressures up to 0.8 MPa, making it suitable for automation, dosing and flow monitoring in compact installations.
Shipping by Thursday 27 August
International fast shipping within EU. Free Shipping for orders above 100 EUR in most EU countries.
We ship from our stock within 24H
You earn points with every order, worth 5%.
Liquid flowmeter sensor with stainless steel ball inside, with flow measurement by Hall element.
The pump is installed vertically, without exceeding a maximum inclination of 5 degrees, for correct operation.
The pump is resistant to liquids with a maximum temperature of 120 degrees C.
The sensor transmits a signal in the form of PWM (Pulse with Modulation) on the yellow wire, generated by the Hall sensor that is activated by the rotation of the rotor. Depending on its rotation speed, a variable pulse width will be obtained.
Specifications:
Supply voltage: 6V
Output signal: PWM
Measured flow: 0.3 - 6L/min
Pressure: <0.8MPa
Maximum current: 15mA at 5V
Operating temperature: <80 degrees C
Humidity: 35 - 90%
Dimensions mm: 58 x 34 x 27mm
Outer tube diameter: 7mm
Inner tube diameter: 3mm
Login:
Red: 6VDC
Black: GND
Yellow: PWM signal
Use:
To be used together with Arduino, connect the power (Red wire) to 5V , the Black wire to GND , the Yellow wire to digital pin 2 . A 10K PullUp resistor will be added between pin 2 and 5V to prevent the float effect on digital pin 2 and implicitly block the returned value.

Open the Arduino IDE and compile the following code (which you can also find in text form in the Download section:
__________________________________________________
int flowPin = 2; //Input pin
double flowRate; //Value to be calculated
volatile int count;
void setup() {
// put your setup code here, to run once:
pinMode(flowPin, INPUT); //Set pin as Input
attachInterrupt(0, Flow, RISING); //Setup interrupt 0 on pin 2 for the Flow function
Serial.begin(9600); //Start Serial
}
void loop() {
// put your main code here, to run repeatedly:
count = 0; // Reset counter
break(); //Enable interrupted
delay(1000);
noInterrupted(); //Disable interrupted
//Start the math
flowRate = (count * 2.25); //calculate the flow rate
flowRate = flowRate * 60; //convert seconds to minutes
flowRate = flowRate / 1000; //convert ml to L
Serial.println(flowRate);
}
void Flow()
{
count++; //increment count by 1
}
__________________________________________________________
Produs destinat utilizarii in proiecte electronice, automatizari, prototipare, educatie si cercetare.
Produsul trebuie utilizat numai conform specificatiilor tehnice mentionate in descriere si/sau in documentatia produsului.
Avertismente generale de siguranta:
Nu utilizati produsul la tensiuni, curenti sau temperaturi peste valorile specificate.
Montajul si conectarea trebuie realizate de persoane cu cunostinte tehnice minime in domeniul electric/electronic.
Evitati scurtcircuitele, inversarea polaritatii si conectarea gresita a alimentarii.
Nu lasati produsul alimentat nesupravegheat in timpul testelor.
Produsul nu este jucarie si nu este destinat copiilor.
Pentru modulele electronice, se recomanda utilizarea in carcase, panouri sau montaje protejate, dupa caz.
Identificare produs:
Denumirea produsului, codul/SKU-ul si caracteristicile tehnice sunt mentionate in pagina produsului si/sau pe eticheta ambalajului.
Producator / Importator / Distribuitor:
Sigmanortec S.R.L.
Calea Bucuresti nr. 9, Targu Jiu, Gorj, Romania
E-mail: [email protected]
Website: www.sigmanortec.ro
Persoana responsabila in UE:
Sigmanortec S.R.L.
Calea Bucuresti nr. 9, Targu Jiu, Gorj, Romania
E-mail: [email protected]
Documentatie si siguranta:
Pentru informatii suplimentare, fise tehnice, declaratii de conformitate sau instructiuni, ne puteti contacta la [email protected].