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.
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.
// 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
volatile int NbTopsFan; //measuring the rising edges of the signal
int Calc;
int hallsensor = 2; //The pin location of the sensor
void rpm () //This is the function that the interupt calls
{
NbTopsFan++; //This function measures the rising and falling edge of the
hall effect sensors signal
}
// The setup() method runs once, when the sketch starts
void setup() //
{
pinMode(hallsensor, INPUT); //initializes digital pin 2 as an input
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 / 7.5); //(Pulse frequency x 60) / 7.5Q, = flow rate
in L/hour
Serial.print (Calc, DEC); //Prints the number calculated above
Serial.print (" L/hour
"); //Prints "L/hour" and returns a new line
}
Wiring up the Water Flow Sensor is pretty simple. There are 3 wires: Black, Red, and Yellow. Black to the Seeeduino's ground pinRed to Seeeduino's 5v pinThe yellow wire will need to be connected to a 10k pull up resistor.and then to pin 2 on the Seeeduino.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.// 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.comvolatile int NbTopsFan; //measuring the rising edges of the signalint Calc; int hallsensor = 2; //The pin location of the sensorvoid rpm () //This is the function that the interupt calls { NbTopsFan++; //This function measures the rising and falling edge of the hall effect sensors signal} // The setup() method runs once, when the sketch startsvoid setup() //{ pinMode(hallsensor, INPUT); //initializes digital pin 2 as an input 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 powervoid loop () { NbTopsFan = 0; //Set NbTops to 0 ready for calculations sei(); //Enables interrupts delay (1000); //Wait 1 second cli(); //Disable interrupts Calc = (NbTopsFan * 60 / 7.5); //(Pulse frequency x 60) / 7.5Q, = flow rate in L/hour Serial.print (Calc, DEC); //Prints the number calculated above Serial.print (" L/hour
"); //Prints "L/hour" and returns a new line}
การแปล กรุณารอสักครู่..
เดินสายขึ้นเซ็นเซอร์การไหลของน้ำเป็นเรื่องง่ายสวย มี 3 สายคือ. ดำ, แดง,
และสีเหลืองดำขาพื้นSeeeduino
ของสีแดงขา5v Seeeduino
ของสายสีเหลืองจะต้องมีการเชื่อมต่อกับ10k ดึง resistor.and แล้วจะตอกตะปู 2 Seeeduino ได้.
เมื่อคุณมี มันสายขึ้นคุณจะต้องอัปโหลดรหัสต่อไปนี้ Seeeduino ของคุณ เมื่อมีการอัปโหลดและคุณมีน้ำไหลผ่านเซ็นเซอร์การไหลของน้ำบางอย่างที่คุณสามารถเปิดหน้าจอแบบอนุกรมและมันจะแสดงอัตราการไหลสดชื่นทุกวินาที. // อ่านอัตราการไหลของของเหลวโดยใช้ Seeeduino และน้ำไหลจากเซนเซอร์ Seeedstudio.com // รหัสดัดแปลงแกนต์ชาร์ลส์จากรหัสพัดลมเครื่องคอมพิวเตอร์ RPM เขียนโดย Crenn @ thebestcasescenario.com // http: /themakersworkbench.com http://thebestcasescenario.com http://seeedstudio.com ระเหย int NbTopsFan; // วัดขอบที่เพิ่มขึ้นของสัญญาณint Calc; int hallsensor = 2; // สถานที่ขาของเซ็นเซอร์โมฆะรอบต่อนาที() // นี้เป็นฟังก์ชั่นที่โทรรบกวน{NbTopsFan ++; // ฟังก์ชั่นมีขนาดเพิ่มขึ้นและลดลงขอบของผลฮอลล์เซ็นเซอร์สัญญาณ} // การติดตั้ง () วิธีการทำงานครั้งเดียวเมื่อร่างเริ่มต้นการติดตั้งเป็นโมฆะ() // {pinMode (hallsensor, INPUT); // ต้นขาดิจิตอล 2 ใส่Serial.begin (9600); // นี้เป็นฟังก์ชั่นการตั้งค่าที่พอร์ตอนุกรมเป็นinitialised, attachInterrupt (0, รอบต่อนาที RISING); // และขัดจังหวะติด} // วง () วิธีการทำงานมากกว่าและมากกว่าอีกครั้ง// ตราบใดที่มีอำนาจ Arduino ห่วงเป็นโมฆะ () {NbTopsFan = 0; // NbTops ตั้งค่าเป็น 0 พร้อมสำหรับการคำนวณเซอิ(); // ช่วยขัดจังหวะล่าช้า(1000) // รอ 1 วินาทีCLI (); // ปิดการใช้งานขัดจังหวะCalc = (NbTopsFan * 60 / 7.5); // (ความถี่ชีพจร x 60) / 7.5Q = อัตราการไหลในL / ชั่วโมงSerial.print (Calc, ธันวาคม); // พิมพ์หมายเลขที่คำนวณข้างต้นSerial.print ("L / ชั่วโมง r n"); // พิมพ์ "L / ชั่วโมง" และผลตอบแทนบรรทัดใหม่}
การแปล กรุณารอสักครู่..