Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /********* Pleasedontcode.com **********
- Pleasedontcode thanks you for automatic code generation! Enjoy your code!
- - Terms and Conditions:
- You have a non-exclusive, revocable, worldwide, royalty-free license
- for personal and commercial use. Attribution is optional; modifications
- are allowed, but you're responsible for code maintenance. We're not
- liable for any loss or damage. For full terms,
- please visit pleasedontcode.com/termsandconditions.
- - Project: Button Activation
- - Source Code compiled for: Arduino Uno
- - Source Code created on: 2024-03-07 16:37:19
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* push button to start code running */
- /****** SYSTEM REQUIREMENT 2 *****/
- /* push button to start code running */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- #include <EasyButton.h>
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- /***** DEFINITION OF DIGITAL INPUT PINS *****/
- const uint8_t START_PUSHBUTTON_PIN = 2;
- /****** DEFINITION OF LIBRARY CLASS INSTANCES *****/
- EasyButton startButton(START_PUSHBUTTON_PIN);
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* push button to start code running */
- /****** SYSTEM REQUIREMENT 2 *****/
- /* push button to start code running */
- /****** END SYSTEM REQUIREMENTS *****/
- void setup(void)
- {
- // put your setup code here, to run once:
- Serial.begin(115200);
- startButton.begin();
- // Add additional setup code here if needed
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- startButton.read();
- // Check if the start button is pressed
- if (startButton.isPressed())
- {
- // Your code logic for system requirement 1 goes here
- }
- // Add additional logic for other system requirements here if needed
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement