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 00:44:39
- ********* 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();
- /***** DEFINITION OF DIGITAL INPUT PINS *****/
- const uint8_t flowmeter_YF_S401_OUT_PIN_D4 = 4;
- /****** DEFINITION OF LIBRARIES CLASS INSTANCES *****/
- FlowSensor flowSensor(YFS401, flowmeter_YF_S401_OUT_PIN_D4);
- void count()
- {
- flowSensor.count();
- }
- void setup(void)
- {
- // Put your setup code here, to run once:
- pinMode(flowmeter_YF_S401_OUT_PIN_D4, INPUT);
- Serial.begin(9600); // Initialize the serial communication
- flowSensor.begin(count);
- }
- void loop(void)
- {
- // Put your main code here, to run repeatedly:
- float flowRate = flowSensor.getFlowRate_m(); // Get the flow rate from the sensor
- Serial.print("Flow rate: ");
- Serial.print(flowRate);
- Serial.println(" L/minute");
- delay(1000); // Delay for 1 second before taking the next reading
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement