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 Actions
- - Source Code compiled for: Arduino Uno
- - Source Code created on: 2024-01-13 10:45:03
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* Turn on led using push button */
- /****** SYSTEM REQUIREMENT 2 *****/
- /* Turn on led using push button */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Arduino.h>
- #include <EasyButton.h>
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- void onButtonD2Pressed();
- void onButtonD3Pressed();
- /***** DEFINITION OF DIGITAL INPUT PINS *****/
- const uint8_t Mybutton_PushButton_PIN_D2 = 2;
- const uint8_t Mybutton_PushButton_PIN_D3 = 3;
- /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
- EasyButton button_D2(Mybutton_PushButton_PIN_D2);
- EasyButton button_D3(Mybutton_PushButton_PIN_D3);
- void setup(void)
- {
- // put your setup code here, to run once:
- pinMode(Mybutton_PushButton_PIN_D2, INPUT_PULLUP);
- pinMode(Mybutton_PushButton_PIN_D3, INPUT_PULLUP);
- // Initialize button objects
- button_D2.begin();
- button_D3.begin();
- // Assign button press callbacks
- button_D2.onPressed(onButtonD2Pressed);
- button_D3.onPressed(onButtonD3Pressed);
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- button_D2.read();
- button_D3.read();
- }
- void onButtonD2Pressed()
- {
- // Turn on LED or perform any action for System Requirement 1
- }
- void onButtonD3Pressed()
- {
- // Turn on LED or perform any action for System Requirement 2
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement