/********* 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: WiFi Button - Source Code NOT compiled for: ESP32 DevKit V1 - Source Code created on: 2024-04-21 22:10:06 ********* Pleasedontcode.com **********/ /****** SYSTEM REQUIREMENTS *****/ /****** SYSTEM REQUIREMENT 1 *****/ /* Configure WiFi and timezone settings with web page */ /* available via both AP and STA */ /****** END SYSTEM REQUIREMENTS *****/ /********* User code review feedback ********** #### Feedback 1 #### - webpage code is not available ********* User code review feedback **********/ /****** DEFINITION OF LIBRARIES *****/ #include /****** FUNCTION PROTOTYPES *****/ void setup(void); void loop(void); /***** DEFINITION OF DIGITAL INPUT PINS *****/ const uint8_t BUTTON_PIN = 4; /****** DEFINITION OF LIBRARIES CLASS INSTANCES*****/ WiFiProvisioner provisioner; void setup(void) { provisioner.connectToWiFi(); pinMode(BUTTON_PIN, INPUT_PULLUP); // Your setup code here } void loop(void) { // put your main code here, to run repeatedly: // Your main code loop here } /* END CODE */