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 Toggle
- - Source Code compiled for: Arduino Uno
- - Source Code created on: 2023-12-07 07:06:29
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* Turn off or on when i press a button */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Arduino.h>
- #include <EasyButton.h>
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* Turn off or on when I press a button */
- const uint8_t Test1_PushButton_PIN_D2 = 2;
- /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
- EasyButton button(Test1_PushButton_PIN_D2);
- // Function to turn off or on when the button is pressed
- void togglePower()
- {
- // Code to toggle the power
- }
- void setup(void)
- {
- // put your setup code here, to run once:
- pinMode(Test1_PushButton_PIN_D2, INPUT_PULLUP);
- // Initialize the button object
- button.begin();
- // Define and attach callback function when the button is pressed
- button.onPressed([]() {
- togglePower();
- });
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- // Read the button state
- button.read();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement