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 compiled for: Arduino Nano ESP32
- - Source Code created on: 2024-07-11 22:42:33
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* read button */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- #include <EasyButton.h> //https://github.com/evert-arias/EasyButton
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- void onPressed(void);
- /***** DEFINITION OF DIGITAL INPUT PINS *****/
- const uint8_t button_PushButton_PIN_D2 = 2;
- /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
- EasyButton button(button_PushButton_PIN_D2); // Initialize EasyButton object with the pin
- /****** FUNCTION DEFINITIONS *****/
- void onPressed()
- {
- Serial.println("Button pressed"); // Function to be called when button is pressed
- }
- void setup(void)
- {
- // put your setup code here, to run once:
- Serial.begin(115200); // Initialize Serial communication
- Serial.println();
- Serial.println(">>> EasyButton pressed example <<<");
- button.begin(); // Initialize the button
- button.onPressed(onPressed); // Attach the onPressed function to the button
- pinMode(button_PushButton_PIN_D2, INPUT_PULLUP); // Set the button pin as input with pull-up resistor
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- button.read(); // Continuously read the button state
- }
- /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement