Advertisement
pleasedontcode

"Button Callbacks" rev_29

Jul 3rd, 2024
707
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: "Button Callbacks"
  13.     - Source Code compiled for: ESP32 DevKit V1
  14.     - Source Code created on: 2024-07-03 22:32:48
  15.  
  16. ********* Pleasedontcode.com **********/
  17.  
  18. /****** SYSTEM REQUIREMENTS *****/
  19. /****** SYSTEM REQUIREMENT 1 *****/
  20.     /* print on serial button state. */
  21. /****** END SYSTEM REQUIREMENTS *****/
  22.  
  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. void onPressed();
  31.  
  32. /***** DEFINITION OF DIGITAL INPUT PINS *****/
  33. const uint8_t button_PushButton_PIN_D4 = 4;
  34.  
  35. /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
  36. EasyButton button(button_PushButton_PIN_D4);  // Initialize EasyButton instance
  37.  
  38. // Callback function to be called when the button is pressed.
  39. void onPressed()
  40. {
  41.   Serial.println("Button pressed");
  42. }
  43.  
  44. void setup(void)
  45. {
  46.   // Initialize Serial for debugging purposes.
  47.   Serial.begin(115200);
  48.   Serial.println();
  49.   Serial.println(">>> EasyButton pressed example <<<");
  50.  
  51.   // Initialize the button.
  52.   button.begin();
  53.   // Add the callback function to be called when the button is pressed.
  54.   button.onPressed(onPressed);
  55. }
  56.  
  57. void loop(void)
  58. {
  59.   // Continuously read the status of the button.
  60.   button.read();
  61.  
  62.   // Print the current state of the button to the Serial monitor.
  63.   static bool lastState = !button.isPressed();  // Initialize with opposite state
  64.   bool currentState = button.isPressed();
  65.  
  66.   if (currentState != lastState) {
  67.     if (currentState) {
  68.       Serial.println("Button is currently pressed");
  69.     } else {
  70.       Serial.println("Button is currently released");
  71.     }
  72.     lastState = currentState;
  73.   }
  74. }
  75.  
  76. /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement