
G1 inch DN25 Water Flow Sensor Hall Flow Meter Counter FS400A
In stock
Order before 12.00PM
Customer Reviews
The FS400A G1" DN25 Water Flow Sensor is a high-precision Hall-effect flow meter designed for measuring water flow rates accurately. It works by using a magnetic core and an internal impeller that generates pulses proportional to the flow rate. This makes it ideal for applications like water dispensers, coffee machines, irrigation systems, and industrial fluid monitoring.
Working Principle:
When water flows through the sensor, it rotates an internal impeller that contains a magnetic core. This movement is detected by the Hall-effect sensor, which then generates a pulse signal proportional to the flow rate. The flow rate can be calculated using the formula:
Pulse Frequency=Flow Rate (L/min)×4.8\text{Pulse Frequency} = \text{Flow Rate (L/min)} \times 4.8
For example, if the pulse frequency is 48Hz, then the water flow rate is:
48÷4.8=10 L/min48 \div 4.8 = 10 \text{ L/min}
This data can be processed by a microcontroller (Arduino, ESP32, STM32, etc.) to measure real-time water flow.
Specifications:
Parameter | Specification |
---|---|
Working Voltage | DC 5V – 24V |
Minimum Operating Voltage | DC 4.5V |
Max. Working Current | 15mA (at DC 5V) |
Flow Rate Range | 1 – 60 L/min |
Load Capacity | ≤10mA (DC 5V) |
Operating Temperature | ≤80°C |
Liquid Temperature | ≤120°C |
Operating Humidity | 35% – 90% RH |
Water Pressure | ≤2.0 MPa |
Storage Temperature | -25°C to +80°C |
Storage Humidity | 25% – 95% RH |
Output Signal | Pulse signal proportional to flow |
Thread Size | G1" (DN25) |
Features:
- Hall-effect Sensor Output: Provides digital pulse output, making it easy to interface with microcontrollers like Arduino, ESP32, Raspberry Pi, and STM32.
- Wide Voltage Compatibility: Operates from 4.5V to 24V, making it suitable for various applications.
- High Durability: Designed to handle water temperatures up to 120°C and withstand pressures of up to 2.0 MPa.
- Accurate Measurement: Pulse frequency = Flow rate (L/min) × 4.8, allowing precise calculations.
- Easy to Interface: Works with both analog and digital input systems.
Applications:
- Water Flow Monitoring in dispensers, coffee machines, and vending machines.
- Industrial Fluid Control in irrigation systems, cooling systems, and water purification.
- Home Automation for smart water metering and leakage detection.
- HVAC Systems for monitoring liquid flow rates.
- DIY Electronics Projects using Arduino, ESP32, and Raspberry Pi.
The FS400A is a G1-inch DN25 water flow sensor that uses a Hall-effect sensor to measure the flow rate of water. It provides pulse signals that correspond to the flow rate in liters per minute (L/min). This sensor is ideal for applications like water metering, irrigation systems, and industrial flow monitoring.
Components Required:
- Arduino Uno (or compatible board)
- FS400A G1” DN25 Water Flow Sensor
- 10kΩ pull-up resistor (optional, for stable signal)
- Jumper wires
- 5V Power source (from Arduino’s 5V pin)
Wiring Diagram:
FS400A Pin | Arduino Pin | Description |
---|---|---|
Red (VCC) | 5V | Power Supply (5V) |
Black (GND) | GND | Ground |
Yellow (Signal) | D2 | Pulse Output |
Notes:
- The signal wire (yellow) provides pulses proportional to the flow rate.
- A 10kΩ pull-up resistor can be connected between the signal (yellow) and VCC (5V) for noise reduction.
- Ensure the arrow on the sensor matches the water flow direction.
Arduino Code:
volatile int pulseCount = 0;
float flowRate = 0.0;
unsigned long oldTime = 0;
void IRAM_ATTR pulseCounter() {
pulseCount++;
}
void setup() {
Serial.begin(9600);
pinMode(2, INPUT_PULLUP);
attachInterrupt(digitalPinToInterrupt(2), pulseCounter, FALLING);
}
void loop() {
if (millis() - oldTime > 1000) { // Update every second
oldTime = millis();
// Flow rate formula: (Pulse Count / 4.8) = Flow Rate in L/min
flowRate = (pulseCount / 4.8);
Serial.print("Flow Rate: ");
Serial.print(flowRate);
Serial.println(" L/min");
pulseCount = 0; // Reset pulse count
}
}
How It Works:
- The FS400A water flow sensor generates pulses as water flows.
- The Arduino interrupt (pin 2) detects these pulses.
- The pulse count is converted to L/min using the formula: Flow Rate (L/min)=Pulse Count4.8\text{Flow Rate (L/min)} = \frac{\text{Pulse Count}}{4.8} (4.8 is a manufacturer-provided calibration constant).
- The flow rate is displayed on the Serial Monitor.
Request Stock
Recently viewed products
You might also be interested in...
Customers who bought this also bought...
General Questions
-
What is the latest price of the G1 inch DN25 Water Flow Sensor Hall Flow Meter Counter FS400A in Bangladesh?
The latest price of G1 inch DN25 Water Flow Sensor Hall Flow Meter Counter FS400A in Bangladesh is Special Price BDT 799.00 Regular Price BDT 849.00 . You can buy the G1 inch DN25 Water Flow Sensor Hall Flow Meter Counter FS400A at the best price on BDTronics.com or contact us via phone.
-
Where to buy G1 inch DN25 Water Flow Sensor Hall Flow Meter Counter FS400A in Bangladesh?
You can buy G1 inch DN25 Water Flow Sensor Hall Flow Meter Counter FS400A online by ordering on BDTronics.com or directly collect by visiting our store in person. BDTronics is a trusted provider of high-quality electronics, 3D printers, solar systems, and robotics parts. We offer fast shipping across the country via courier service.
-
What are the delivery options of G1 inch DN25 Water Flow Sensor Hall Flow Meter Counter FS400A in Bangladesh?
We provide home delivery service all over Bangladesh. We support cash on delivery, bKash and Credit Card (Visa/ MasterCard/ Amex) payment solutions. The delivery time usually takes 1-2 days inside Dhaka and 2-3 days outside Dhaka.