Advertisement
pleasedontcode

Header Library rev_01

Apr 27th, 2024
82
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: Header Library
  13.     - Source Code NOT compiled for: Arduino Uno
  14.     - Source Code created on: 2024-04-27 13:22:05
  15.  
  16. ********* Pleasedontcode.com **********/
  17.  
  18. /****** SYSTEM REQUIREMENTS *****/
  19. /****** SYSTEM REQUIREMENT 1 *****/
  20.     /* send data to 100 pixels */
  21. /****** END SYSTEM REQUIREMENTS *****/
  22.  
  23. /****** DEFINITION OF LIBRARIES *****/
  24. #include <EasyButton.h>    // https://github.com/evert-arias/EasyButton
  25. #include <OctoWS2811.h>    // https://github.com/PaulStoffregen/OctoWS2811
  26.  
  27. /****** FUNCTION PROTOTYPES *****/
  28. void setup(void);
  29. void loop(void);
  30.  
  31. /***** DEFINITION OF DIGITAL INPUT PINS *****/
  32. const uint8_t Mode_Select_PushButton_PIN_D2 = 2;
  33.  
  34. /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
  35. EasyButton button(Mode_Select_PushButton_PIN_D2); // Initialize EasyButton object with pin D2
  36.  
  37. void setup(void)
  38. {
  39.     // put your setup code here, to run once:
  40.     pinMode(Mode_Select_PushButton_PIN_D2, INPUT_PULLUP);
  41.     button.begin(); // Initialize the EasyButton object
  42. }
  43.  
  44. void loop(void)
  45. {
  46.     // put your main code here, to run repeatedly:
  47.     button.read(); // Read the button state
  48.  
  49.     // send data to 100 pixels
  50.     // Implement the code to send data to 100 pixels here
  51. }
  52.  
  53. /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement