ModelessConnect.ino 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #include <ESP8266WiFi.h> //https://github.com/esp8266/Arduino
  2. //needed for library
  3. #include <DNSServer.h>
  4. #include <ESPAsyncWebServer.h>
  5. #include <ESPAsyncWiFiManager.h> //https://github.com/tzapu/WiFiManager
  6. AsyncWebServer server(80);
  7. DNSServer dns;
  8. AsyncWiFiManager wifiManager(&server,&dns);
  9. void setup() {
  10. // put your setup code here, to run once:
  11. Serial.begin(115200);
  12. //WiFiManager
  13. //Local intialization. Once its business is done, there is no need to keep it around
  14. //reset saved settings
  15. //wifiManager.resetSettings();
  16. //set custom ip for portal
  17. //wifiManager.setAPConfig(IPAddress(10,0,1,1), IPAddress(10,0,1,1), IPAddress(255,255,255,0));
  18. //fetches ssid and pass from eeprom and tries to connect
  19. //if it does not connect it starts an access point with the specified name
  20. //here "AutoConnectAP"
  21. //and goes into a blocking loop awaiting configuration
  22. //wifiManager.autoConnect("AutoConnectAP");
  23. //or use this for auto generated name ESP + ChipID
  24. //wifiManager.autoConnect();
  25. wifiManager.startConfigPortalModeless("ModelessAP", "Password");
  26. server.on("/", HTTP_GET, [](AsyncWebServerRequest *request){
  27. request->send(200, "text/plain", "Hello World");
  28. });
  29. }
  30. void loop() {
  31. // put your main code here, to run repeatedly:
  32. wifiManager.loop();
  33. }