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 Handling"
- - Source Code compiled for: Arduino Nano ESP32
- - Source Code created on: 2024-06-26 20:00:08
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* Implement a push-button control system using */
- /* EasyButton library to detect button presses on */
- /* digital pin D2. The system should initialize the */
- /* button in setup() and continuously check for */
- /* button state changes in loop(). */
- /****** 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 *****/
- const uint8_t butt_PushButton_PIN_D2 = 2;
- /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
- EasyButton button(butt_PushButton_PIN_D2); // Initialize EasyButton object with the pin number
- /****** FUNCTION DECLARATIONS *****/
- void onPressed(); // Function to handle button press event
- void setup(void)
- {
- // Initialize serial communication at 115200 baud rate
- Serial.begin(115200);
- Serial.println();
- Serial.println(">>> EasyButton pressed example <<<");
- // Initialize the button
- button.begin();
- // Attach the onPressed function to the button press event
- button.onPressed(onPressed);
- }
- void loop(void)
- {
- // Continuously read the button state
- button.read();
- }
- void onPressed()
- {
- // Print message when button is pressed
- Serial.println("Button pressed");
- }
- /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement