Advertisement
pleasedontcode

EasyButton IoT rev_15

Apr 21st, 2024
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /********* Pleasedontcode.com **********
  2.  
  3.     Pleasedontcode thanks you for automatic code generation! Enjoy your code!
  4.  
  5.     - Terms and Conditions:
  6.     You have a non-exclusive, revocable, worldwide, royalty-free license
  7.     for personal and commercial use. Attribution is optional; modifications
  8.     are allowed, but you're responsible for code maintenance. We're not
  9.     liable for any loss or damage. For full terms,
  10.     please visit pleasedontcode.com/termsandconditions.
  11.  
  12.     - Project: EasyButton IoT
  13.     - Source Code compiled for: ESP32 DevKit V1
  14.     - Source Code created on: 2024-04-21 22:37:05
  15.  
  16. ********* Pleasedontcode.com **********/
  17.  
  18. /****** SYSTEM REQUIREMENTS *****/
  19. /****** SYSTEM REQUIREMENT 1 *****/
  20.     /* Configure WiFi and timezone settings with web page */
  21.     /* available via both AP and STA */
  22. /****** END SYSTEM REQUIREMENTS *****/
  23.  
  24.  
  25. /****** DEFINITION OF LIBRARIES *****/
  26. #include <EasyButton.h>    // https://github.com/evert-arias/EasyButton
  27. #include <WiFiManager.h>   // https://github.com/tzapu/WiFiManager.git
  28.  
  29. /****** FUNCTION PROTOTYPES *****/
  30. void setup(void);
  31. void loop(void);
  32.  
  33. /***** DEFINITION OF DIGITAL INPUT PINS *****/
  34. const uint8_t test_PushButton_PIN_D4 = 4;
  35.  
  36. /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/
  37. EasyButton test_PushButton(test_PushButton_PIN_D4);  // Object initialization for EasyButton class
  38. WiFiManager wm;  // Object initialization for WiFiManager class
  39.  
  40. void setup(void)
  41. {
  42.     pinMode(test_PushButton_PIN_D4, INPUT_PULLUP);
  43.  
  44.     // Initialize WiFiManager to configure WiFi and timezone settings via web page
  45.     wm.setConfigPortalBlocking(false);
  46.     wm.setConfigPortalTimeout(60);
  47.  
  48.     if (wm.autoConnect("AutoConnectAP")) {
  49.         Serial.println("connected...yeey :)");
  50.     }
  51.     else {
  52.         Serial.println("Configportal running");
  53.     }
  54. }
  55.  
  56. void loop(void)
  57. {
  58.     wm.process();
  59. }
  60.  
  61. /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement