Advertisement
pleasedontcode

EasyButton Example rev_13

Apr 21st, 2024
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /********* Pleasedontcode.com **********
  2.  
  3.     Pleasedontcode thanks you for automatic code generation! Enjoy your code!
  4.  
  5.     - Terms and Conditions:
  6.     You have a non-exclusive, revocable, worldwide, royalty-free license
  7.     for personal and commercial use. Attribution is optional; modifications
  8.     are allowed, but you're responsible for code maintenance. We're not
  9.     liable for any loss or damage. For full terms,
  10.     please visit pleasedontcode.com/termsandconditions.
  11.  
  12.     - Project: EasyButton Example
  13.     - Source Code NOT compiled for: ESP32 DevKit V1
  14.     - Source Code created on: 2024-04-21 22:16:37
  15.  
  16. ********* Pleasedontcode.com **********/
  17.  
  18. /****** SYSTEM REQUIREMENTS *****/
  19. /****** SYSTEM REQUIREMENT 1 *****/
  20.     /* Configure WiFi and timezone settings with web page */
  21.     /* available via both AP and STA */
  22. /****** END SYSTEM REQUIREMENTS *****/
  23.  
  24. /****** DEFINITION OF LIBRARIES *****/
  25. #include <EasyButton.h> //https://github.com/evert-arias/EasyButton
  26.  
  27. /****** FUNCTION PROTOTYPES *****/
  28. void setup(void);
  29. void loop(void);
  30.  
  31. /***** DEFINITION OF DIGITAL INPUT PINS *****/
  32. const uint8_t test_PushButton_PIN_D4 = 4;
  33.  
  34. /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
  35. EasyButton button(test_PushButton_PIN_D4); // Initialize EasyButton object with the pin number
  36.  
  37. void setup(void)
  38. {
  39.     // Configure WiFi and timezone settings with web page available via both AP and STA
  40.     // put your setup code here, to run once:
  41.     pinMode(test_PushButton_PIN_D4, INPUT_PULLUP);
  42.  
  43.     button.begin(); // Initialize the EasyButton object
  44.     button.onPressed([]() { // Define the function to be executed when the button is pressed
  45.         Serial.println("Button pressed");
  46.     });
  47. }
  48.  
  49. void loop(void)
  50. {
  51.     // put your main code here, to run repeatedly:
  52.     button.read(); // Check the button state
  53. }
  54.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement