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 16:17:12
- ********* 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>
- /****** SYSTEM REQUIREMENTS *****/
- // SYSTEM REQUIREMENT 1: If button is pressed, set output to 128
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- /***** DEFINITION OF DIGITAL INPUT PINS *****/
- const uint8_t butt_PushButton_PIN_D4 = 4;
- const uint8_t dit_PIN_D13 = 13;
- const uint8_t ditpullup_PIN_D14 = 14;
- const uint8_t ditpulldown_PIN_D16 = 16;
- /****** DEFINITION OF LIBRARY CLASS INSTANCES *****/
- EasyButton pushButton(butt_PushButton_PIN_D4, 50);
- void setup(void)
- {
- // put your setup code here, to run once:
- pinMode(dit_PIN_D13, OUTPUT);
- digitalWrite(dit_PIN_D13, LOW);
- pinMode(ditpullup_PIN_D14, INPUT_PULLUP);
- pinMode(ditpulldown_PIN_D16, INPUT_PULLDOWN);
- pushButton.begin();
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- pushButton.read();
- // Check if the pushButton is pressed
- if (pushButton.isPressed())
- {
- analogWrite(dit_PIN_D13, 128); // Set the output to 128
- }
- else
- {
- analogWrite(dit_PIN_D13, 0); // Set the output to 0
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement