Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /********* Pleasedontcode.com **********
- Pleasedontcode thanks you for automatic code generation! Enjoy your code!
- - Terms and Conditions:
- You have a non-exclusive, revocable, worldwide, royalty-free license
- for personal and commercial use. Attribution is optional; modifications
- are allowed, but you're responsible for code maintenance. We're not
- liable for any loss or damage. For full terms,
- please visit pleasedontcode.com/termsandconditions.
- - Project: Flow Monitor
- - Source Code compiled for: Arduino Uno
- - Source Code created on: 2023-12-07 12:08:38
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* read flow meter and print on serial monitor. */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Arduino.h>
- #include <FlowSensor.h>
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- void count(void);
- /****** DEFINITION OF DIGITAL INPUT PINS *****/
- const uint8_t sens_YF_B1_OUT_PIN_D2 = 2;
- /****** DEFINITION OF LIBRARIES CLASS INSTANCES *****/
- FlowSensor sensor(YFS201, sens_YF_B1_OUT_PIN_D2);
- unsigned long timebefore = 0;
- unsigned long reset = 0;
- void count()
- {
- sensor.count();
- }
- void setup(void)
- {
- // put your setup code here, to run once:
- pinMode(sens_YF_B1_OUT_PIN_D2, INPUT);
- sensor.begin(count);
- Serial.begin(9600); // Initialize serial communication
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- if (millis() - timebefore >= 1000)
- {
- sensor.read();
- float flowRate = sensor.getFlowRate_m(); // Read flow rate from sensor
- // Print flow rate on serial monitor
- Serial.print("Flow rate: ");
- Serial.print(flowRate);
- Serial.println(" L/minute");
- timebefore = millis();
- }
- if (millis() - reset >= 60000)
- {
- sensor.resetVolume();
- reset = millis();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement