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 Detection
- - Source Code NOT compiled for: Arduino Uno
- - Source Code created on: 2024-10-25 17:31:05
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* The system shall utilize the EasyButton library to */
- /* manage button presses on a digital input pin (D2) */
- /* with an INPUT_PULLUP configuration for enhanced */
- /* reliability and responsiveness. */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- #include <EasyButton.h> //https://github.com/evert-arias/EasyButton
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- /***** DEFINITION OF DIGITAL INPUT PINS *****/
- #define PUSH_BUTTON_PIN_D2 2 // Define the pin for the push button
- /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
- // Create an instance of EasyButton for the defined pin
- EasyButton button(PUSH_BUTTON_PIN_D2, 35, true, true); // Debounce time, pullup enabled, active low
- /****** FUNCTION DEFINITIONS *****/
- // Function to be called when the button is pressed
- void onButtonPressed() {
- Serial.println("Button pressed");
- }
- void setup(void)
- {
- // Initialize serial communication
- Serial.begin(115200);
- // Print a message to the serial monitor
- Serial.println();
- Serial.println(">>> EasyButton example <<<");
- // Initialize the button with INPUT_PULLUP configuration
- button.begin(); // Initialize the button
- button.onPressed(onButtonPressed); // Attach the callback function for button press
- }
- void loop(void)
- {
- // Continuously read the button state
- button.read();
- }
- /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement