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: ESP32 DevKit V1
- - Source Code created on: 2024-08-25 15:15:33
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* Utilize the Serial Monitor at 9600 baud rate to */
- /* output "Hello" every second, ensuring proper */
- /* initialization in the setup function and */
- /* consistent timing in the loop function using */
- /* delay. */
- /****** 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 button_PushButton_PIN_D4 = 4;
- /****** DEFINITION OF LIBRARIES CLASS INSTANCES *****/
- // Instance of the button using the EasyButton class
- EasyButton button(button_PushButton_PIN_D4); // Correctly initializing the EasyButton instance
- void setup(void)
- {
- // Initialize Serial for debugging purposes at 9600 baud rate
- Serial.begin(9600);
- Serial.println();
- Serial.println(">>> EasyButton example <<<");
- // Initialize the button
- button.begin(); // Call begin() to set up the button
- button.onPressed([]() { // Lambda function to handle button press
- Serial.println("Button pressed");
- });
- }
- void loop(void)
- {
- // Continuously read the status of the button
- button.read(); // Read the button state
- // Output "Hello" every second
- Serial.println("Hello"); // Print "Hello" to the Serial Monitor
- delay(1000); // Wait for 1 second
- }
- /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement