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 Measurement
- - Source Code compiled for: Arduino Uno
- - Source Code created on: 2023-12-07 00:50:24
- ********* 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>
- /***** DEFINITION OF DIGITAL INPUT PINS *****/
- const uint8_t sens_YF_S201_OUT_PIN_D2 = 2;
- /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
- #define type YFS201
- #define pin sens_YF_S201_OUT_PIN_D2
- FlowSensor Sensor(type, pin);
- void count()
- {
- Sensor.count();
- }
- void setup(void)
- {
- // put your setup code here, to run once:
- pinMode(sens_YF_S201_OUT_PIN_D2, INPUT);
- Serial.begin(115200);
- Sensor.begin(count);
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- Sensor.read();
- // Print flow rate and volume to Serial Monitor
- Serial.print("Flow rate (L/minute) : ");
- Serial.println(Sensor.getFlowRate_m());
- Serial.print("Volume (L) : ");
- Serial.println(Sensor.getVolume());
- delay(1000);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement