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 Detection"
- - Source Code NOT compiled for: ESP32 DevKit V1
- - Source Code created on: 2024-06-20 21:35:52
- ********* Pleasedontcode.com **********/
- /****** SYSTEM REQUIREMENTS *****/
- /****** SYSTEM REQUIREMENT 1 *****/
- /* chci kod pro kviz na webu pro mobilní telefon s 5 */
- /* otázky (otázky chci, aby šli lehce přidávat), dále */
- /* chci otázky typu a, b, c, d; dále ano/ne; volná */
- /* odpověď. dále přihlášení uživatelu a vyhodnoceni, */
- /* zpětná vazba po otázkách */
- /****** END SYSTEM REQUIREMENTS *****/
- /****** DEFINITION OF LIBRARIES *****/
- #include <EasyButton.h> //https://github.com/evert-arias/EasyButton
- /****** FUNCTION PROTOTYPES *****/
- void setup(void);
- void loop(void);
- /***** DEFINITION OF DIGITAL INPUT PINS *****/
- const uint8_t jj_PushButton_PIN_D4 = 4;
- /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
- EasyButton button(jj_PushButton_PIN_D4); // Initialize EasyButton instance with the pin
- void onButtonPressed() {
- Serial.println("Button pressed");
- }
- void setup(void)
- {
- // put your setup code here, to run once:
- Serial.begin(115200);
- Serial.println();
- Serial.println(">>> EasyButton example <<<");
- button.begin(); // Initialize the button
- button.onPressed(onButtonPressed); // Attach the callback function
- pinMode(jj_PushButton_PIN_D4, INPUT_PULLUP);
- }
- void loop(void)
- {
- // put your main code here, to run repeatedly:
- button.read(); // Read the button state
- }
- /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement