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: Button Action
- - Source Code compiled for: Arduino Uno
- - Source Code created on: 2024-03-25 21:57:48
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* proekt ti rekovmi rece */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- #include <EasyButton.h> // Library for reading button input
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- void handleButtonPress(void);
- /***** DEFINITION OF DIGITAL INPUT PINS *****/
- const uint8_t butt_PushButton_PIN_D2 = 2;
- /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
- EasyButton button(butt_PushButton_PIN_D2);
- void setup(void)
- {
- // Initialize serial communication
- Serial.begin(115200);
- Serial.println();
- Serial.println(">>> LUA DTO Example <<<");
- // Setup pin mode
- pinMode(butt_PushButton_PIN_D2, INPUT_PULLUP);
- // Initialize the button
- button.begin();
- // Attach the handleButtonPress function to the button's pressed event
- button.onPressed(handleButtonPress);
- }
- void loop(void)
- {
- // Continuously check the button state
- button.read();
- delay(50); // Add a small delay to avoid button jitters or multiple triggers
- }
- void handleButtonPress(void)
- {
- // Perform action based on the button pressed
- Serial.println("Button pressed");
- // Call other functions or update sensor values here based on the button press
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement