#include <WiFi.h>
#include <ESPAsyncWebSrv.h>
#include <ESPAsync_WiFiManager.h> //https://github.com/tzapu/WiFiManager
AsyncWebServer server(80);
DNSServer dns;
void setup() {
Serial.begin(115200);
// WiFiManager
// Local intialization. Once its business is done, there is no need to keep it around
AsyncWiFiManager wifiManager(&server,&dns);
// Uncomment and run it once, after uploading the sketch.
// wifiManager.resetSettings();
// set custom ip for portal
wifiManager.setAPStaticIPConfig(IPAddress(10,0,1,1), IPAddress(10,0,1,1), IPAddress(255,255,255,0));
// fetches ssid and pass from eeprom and tries to connect
// if it does not connect it starts an access point with the specified name
// here "AutoConnectAP"
// and goes into a blocking loop awaiting configuration
wifiManager.autoConnect("AutoConnectAP");
// if you get here you have connected to the WiFi
Serial.println("connected...yeey :)");
server.begin();
}
void loop() {
// put your main code here, to run repeatedly:
}