Advertisement
pleasedontcode

Button Light rev_01

Apr 19th, 2024
68
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 Light
  13.     - Source Code compiled for: Arduino Uno
  14.     - Source Code created on: 2024-04-19 08:31:17
  15.  
  16. ********* Pleasedontcode.com **********/
  17.  
  18. /****** SYSTEM REQUIREMENTS *****/
  19. /****** SYSTEM REQUIREMENT 1 *****/
  20.     /* turn on light when button pressed */
  21. /****** END SYSTEM REQUIREMENTS *****/
  22.  
  23. /****** DEFINITION OF LIBRARIES *****/
  24. #include <EasyButton.h> //https://github.com/evert-arias/EasyButton
  25.  
  26. /****** FUNCTION PROTOTYPES *****/
  27. void setup(void);
  28. void loop(void);
  29. void turnOnLight();
  30.  
  31. /***** DEFINITION OF DIGITAL INPUT PINS *****/
  32. const uint8_t button1_PushButton_PIN_D2 = 2;
  33. const uint8_t light_PIN_D3 = 3;
  34.  
  35. /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
  36. EasyButton button1(button1_PushButton_PIN_D2); // Create an instance of the EasyButton class
  37.  
  38. void setup(void)
  39. {
  40.     // put your setup code here, to run once:
  41.     pinMode(light_PIN_D3, OUTPUT); // Set the light pin as output
  42.     digitalWrite(light_PIN_D3, LOW); // Turn off the light initially
  43.  
  44.     button1.begin(); // Initialize the EasyButton instance
  45.  
  46.     button1.onPressed(turnOnLight); // Call the turnOnLight function when the button is pressed
  47. }
  48.  
  49. void loop(void)
  50. {
  51.     // put your main code here, to run repeatedly:
  52.     button1.read(); // Read the button state
  53.  
  54.     // Add any other code you need to run repeatedly here
  55. }
  56.  
  57. void turnOnLight()
  58. {
  59.     // Code to turn on the light
  60.     digitalWrite(light_PIN_D3, HIGH);
  61. }
  62.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement