Advertisement
pleasedontcode

Button Control rev_01

Jan 8th, 2024
100
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 Control
  13.     - Source Code compiled for: Arduino Uno
  14.     - Source Code created on: 2024-01-08 12:54:53
  15.  
  16. ********* Pleasedontcode.com **********/
  17.  
  18. /****** SYSTEM REQUIREMENTS *****/
  19. /****** SYSTEM REQUIREMENT 1 *****/
  20.     /* Satyam Kumar */
  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. /* Satyam Kumar */
  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 Satyam_PushButton_PIN_D2 = 2;
  38. const uint8_t Satyam_PushButton_PIN_D3 = 3;
  39. const uint8_t Satyam_PushButton_PIN_D4 = 4;
  40. const uint8_t Satyam_PushButton_PIN_D5 = 5;
  41.  
  42. /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
  43. EasyButton Satyam_PushButton_D2(Satyam_PushButton_PIN_D2);
  44. EasyButton Satyam_PushButton_D3(Satyam_PushButton_PIN_D3);
  45. EasyButton Satyam_PushButton_D4(Satyam_PushButton_PIN_D4);
  46. EasyButton Satyam_PushButton_D5(Satyam_PushButton_PIN_D5);
  47.  
  48. void setup(void)
  49. {
  50.   // put your setup code here, to run once:
  51.   Serial.begin(115200);
  52.   Serial.println();
  53.   Serial.println(">>> Button Press Example <<<");
  54.   Satyam_PushButton_D2.begin();
  55.   Satyam_PushButton_D3.begin();
  56.   Satyam_PushButton_D4.begin();
  57.   Satyam_PushButton_D5.begin();
  58. }
  59.  
  60. void loop(void)
  61. {
  62.   // put your main code here, to run repeatedly:
  63.   Satyam_PushButton_D2.read();
  64.   Satyam_PushButton_D3.read();
  65.   Satyam_PushButton_D4.read();
  66.   Satyam_PushButton_D5.read();
  67. }
  68.  
  69. /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement