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: Tech_arduinov1
- - Source Code compiled for: Arduino Uno
- - Source Code created on: 2023-10-14 21:33:40
- - Source Code generated by: AlexWind
- ********* Pleasedontcode.com **********/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Arduino.h>
- #include <EasyButton.h>
- /****** SYSTEM REQUIREMENT 1 *****/
- const uint8_t Tech_inc_PushButton_PIN_D2 = 2; // Define the pin for the button
- EasyButton button(Tech_inc_PushButton_PIN_D2); // Create an instance of the EasyButton library
- void setup(void)
- {
- pinMode(Tech_inc_PushButton_PIN_D2, INPUT_PULLUP); // Set the button pin as input with internal pull-up resistor
- button.begin(); // Initialize the button
- // Attach a callback function to the onPressed event
- button.onPressed([]() {
- // Turn on the light when the button is pressed
- digitalWrite(LED_BUILTIN, HIGH);
- });
- }
- void loop(void)
- {
- button.read(); // Update the button state
- // put your main code here, to run repeatedly:
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement