Advertisement
pleasedontcode

Button Setup rev_01

Dec 23rd, 2023
88
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 Setup
  13.     - Source Code compiled for: Arduino Pro Mini 5V
  14.     - Source Code created on: 2023-12-23 14:01:56
  15.  
  16. ********* Pleasedontcode.com **********/
  17.  
  18. /****** SYSTEM REQUIREMENTS *****/
  19. /****** SYSTEM REQUIREMENT 1 *****/
  20.     /* test  sdfedf */
  21. /****** END SYSTEM REQUIREMENTS *****/
  22.  
  23. /****** DEFINITION OF LIBRARIES *****/
  24. #include <Arduino.h>
  25. #include <EasyButton.h>
  26.  
  27. /****** SYSTEM REQUIREMENTS *****/
  28. /****** SYSTEM REQUIREMENT 1 *****/
  29. /* Test requirement 1: sdfedf */
  30. /****** END SYSTEM REQUIREMENTS *****/
  31.  
  32. /****** FUNCTION PROTOTYPES *****/
  33. void setup(void);
  34. void loop(void);
  35.  
  36. /***** DEFINITION OF DIGITAL INPUT PINS *****/
  37. const uint8_t dd_PushButton_PIN_D2 = 2;
  38.  
  39. /****** DEFINITION OF LIBRARY CLASS INSTANCES *****/
  40. EasyButton button(dd_PushButton_PIN_D2);
  41.  
  42. void setup(void)
  43. {
  44.   // put your setup code here, to run once:
  45.  
  46.   // Set the pin mode of the push button pin to INPUT_PULLUP
  47.   pinMode(dd_PushButton_PIN_D2, INPUT_PULLUP);
  48.  
  49.   // Initialize the EasyButton object
  50.   button.begin();
  51. }
  52.  
  53. void loop(void)
  54. {
  55.   // put your main code here, to run repeatedly:
  56.  
  57.   // Read the button state
  58.   button.read();
  59. }
  60.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement