Advertisement
pleasedontcode

game rev_01

Oct 22nd, 2023
94
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: game
  13.     - Source Code compiled for: Arduino Uno
  14.     - Source Code created on: 2023-10-22 06:25:41
  15.     - Source Code generated by: abd
  16.  
  17. ********* Pleasedontcode.com **********/
  18. /****** DEFINITION OF LIBRARIES *****/
  19. #include <Arduino.h>
  20. #include <EasyButton.h>
  21. #include <forcedBMX280.h>
  22.  
  23. /****** SYSTEM REQUIREMENT 1 *****/
  24. // Include the library for speech recognition
  25.  
  26. /****** FUNCTION PROTOTYPES *****/
  27. void setup(void);
  28. void loop(void);
  29.  
  30. /***** DEFINITION OF DIGITAL INPUT PINS *****/
  31. const uint8_t PullButton_PushButton_PIN_D2 = 2; // Add missing semicolon at the end
  32.  
  33. void setup(void)
  34. {
  35.   // put your setup code here, to run once:
  36.  
  37.   pinMode(PullButton_PushButton_PIN_D2, INPUT_PULLUP);
  38. }
  39.  
  40. void loop(void)
  41. {
  42.   // put your main code here, to run repeatedly:
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement