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 Setup
- - Source Code compiled for: ESP32 DevKit V1
- - Source Code created on: 2024-01-14 12:54:30
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* if button is pressed so set out to 128. */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- #include <Arduino.h>
- #include <EasyButton.h>
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- /***** DEFINITION OF DIGITAL INPUT PINS *****/
- const uint8_t butt_PushButton_PIN = 4;
- const uint8_t dit_PIN_D13 = 13;
- const uint8_t ditpullup_PIN_D14 = 14;
- const uint8_t ditpulldown_PIN_D16 = 16;
- /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
- // Initialize the EasyButton object
- EasyButton butt_PushButton(butt_PushButton_PIN);
- void setup(void)
- {
- // Initialize Serial communication with a baud rate of 115200
- Serial.begin(115200);
- // Set the output pin to 128 if the button is pressed
- pinMode(dit_PIN_D13, OUTPUT);
- // Set the pins as input
- pinMode(ditpullup_PIN_D14, INPUT_PULLUP);
- pinMode(ditpulldown_PIN_D16, INPUT_PULLDOWN);
- // Initialize the EasyButton
- butt_PushButton.begin();
- // Register a callback function for button pressed event
- butt_PushButton.onPressed([](){
- Serial.println("Button pressed");
- // Set the output pin to 128
- digitalWrite(dit_PIN_D13, 128);
- });
- }
- void loop(void)
- {
- // Read the button state
- butt_PushButton.read();
- // Continue with other tasks
- // ...
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement