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 Handler
- - Source Code compiled for: Arduino Uno
- - Source Code created on: 2024-03-27 18:08:12
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* As a user, I want to be able to detect when the */
- /* push button connected to pin D2 is pressed, so */
- /* that I can trigger an action in my Arduino */
- /* project. */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- #include <EasyButton.h> // Third-party library for easy button handling
- /****** FUNCTION PROTOTYPES *****/
- void setup();
- void loop();
- void onButtonPress(); // TODO: Add callback function for button press event
- /***** DEFINITION OF DIGITAL INPUT PINS *****/
- const uint8_t buttonPin = 2; // Pin connected to the push button (D2)
- /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
- EasyButton button(buttonPin); // Initialize EasyButton object
- void setup()
- {
- // TODO: Initialize any additional GPIO or peripherals
- pinMode(buttonPin, INPUT_PULLUP); // Configure push button pin
- button.begin(); // Begin button library
- // Add callback function to be triggered when button is pressed
- button.onPressed(onButtonPress);
- }
- void loop()
- {
- // Continue reading button state
- button.read();
- // Your main code here
- }
- void onButtonPress()
- {
- // Action to be triggered when button is pressed
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement