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 Initialization
- - Source Code compiled for: Arduino Uno
- - Source Code created on: 2023-12-07 15:41: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 the library for Flow Sensor
- #include <FlowSensor.h>
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- /***** DEFINITION OF DIGITAL INPUT PINS *****/
- const uint8_t sens_YF_B1_OUT_PIN_D2 = 2;
- /***** DEFINITION OF DIGITAL OUTPUT PINS *****/
- const uint8_t VERDE_LED_PIN_D11 = 11;
- const uint8_t ROSSO_LED_PIN_D12 = 12;
- /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
- // Create an instance of the FlowSensor class
- FlowSensor Sensor(YFB1, sens_YF_B1_OUT_PIN_D2);
- void count()
- {
- Sensor.count();
- }
- void setup(void)
- {
- // put your setup code here, to run once:
- // Initialize the Flow Sensor
- Sensor.begin(count);
- pinMode(VERDE_LED_PIN_D11, OUTPUT);
- pinMode(ROSSO_LED_PIN_D12, OUTPUT);
- Serial.begin(9600); // Initialize the serial communication
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- // Read the flow rate from the sensor
- float flowRate = Sensor.getFlowRate_h();
- // Print the flow rate on the serial monitor
- Serial.print("Flow Rate: ");
- Serial.print(flowRate);
- Serial.println(" L/minute");
- delay(1000); // Wait for 1 second
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement