Wish List 0

1.5 Inch Water Flow Sensor Yf Dn40

Rs. 1,147.00 Rs. 1,285.00

  • Product Code: SEN-FLOW
  • SKU -
  • Availability: In Stock
  • Price in reward points: 10
  • For Bulk Order 9962060070
    Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
-YF-DN40 1.5 inch is a plastic frame water flow sensor that consists of a water rotor and a corridor-impact sensor and is used for glide dimension for business utility.
-When the water flows via the rotor, rotor rolls and the velocity of it modifications with a extraordinary rate of flow.
-The corridor-effect sensor outputs the corresponding pulse signal.

The output of the flow sensor is proportional to the water waft. The greater the water flowing greater are the pulses.

Features of 1.5 inch Water Flow Sensor - YF-DN40:-
Hydrostatic pressure> 1.75MPa meet
Operating voltage range DC 5 ~ 24V comply
Insulation resistance> 100M> 100M
Accuracy in 1 ~ 120L / MIN  ± 2% in line
Flow pulse characteristics F = (0.45 * Q) Q = L / Min meet
Low temperature test at -20'C temperature placed after 72h, at room temperature for 1h, the first measurement  accuracy within ± 5% value in line
High-temperature test temperature at 85'C placed after 72h, at room temperature for 1h, the first measurement accuracy within ± 5% value
11/2"" DN40 flow rate 5~150L/min  Plastic Hall Turbine flow sensor meter  switch valve control liquid flow sensor


SPECIFICATIONS:
Product item no YF-DN40
Material           Plastic
Function           Sensor , flow rate control
Thread size        BSP 1 1/2”
Size               L 92x OD46  X1.5"
Color              Black  color 

OVERVIEW:

-Hydrostatic pressure> 1.75MPa meet

-Operating voltage range DC 5 ~ 24V comply

-Insulation resistance> 100M> 100M

-Accuracy in 1 ~ 120L / MIN  ± 2% in line

-Flow pulse characteristics F = (0.45 * Q) Q = L / Min meet

-Low temperature test at -20'C temperature placed after 72h, at room temperature for 1h, the first measurement accuracy within ± 5% value in line

-High-temperature test temperature at 85'C placed after 72h, at room temperature for 1h, the first measurement accuracy within ± 5% value

-11/2" DN40 flow rate 5~150L/min  Plastic Hall Turbine flow sensor meter  switch valve control liquid flow sensor

PACKAGE INCLUDES:

1 PCS x Yf Dn40 1.5 Inch Water Flow Sensor


//SOURCE CODE TAKEN FROM BELOW LINK

//https://www.electroschematics.com/working-with-water-flow-sensors-arduino/

volatile int flow_frequency; // Measures flow sensor pulses

unsigned int l_hour; // Calculated litres/hour

unsigned char flowsensor = 2; // Sensor Input

unsigned long currentTime;

unsigned long cloopTime;

void flow () // Interrupt function

{

   flow_frequency++;

}

void setup()

{

   pinMode(flowsensor, INPUT);

   digitalWrite(flowsensor, HIGH); // Optional Internal Pull-Up

   Serial.begin(9600);

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

   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.

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

      flow_frequency = 0; // Reset Counter

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

      Serial.println(" L/hour");

   }

}

15 days

Write a review

Please login or register to review