wifimgr.h 653 B

12345678910111213141516171819202122232425
  1. #pragma once
  2. #include <WiFi.h>
  3. #include <WebServer.h>
  4. using WebServerClass = WebServer;
  5. #define AC_DEBUG
  6. #include <AutoConnect.h>
  7. /*
  8. AC_USE_SPIFFS indicates SPIFFS or LittleFS as available file systems that
  9. will become the AUTOCONNECT_USE_SPIFFS identifier and is exported as shown
  10. the valid file system. After including AutoConnect.h, the Sketch can determine
  11. whether to use FS.h or LittleFS.h by AUTOCONNECT_USE_SPIFFS definition.
  12. */
  13. extern AutoConnect portal;
  14. extern AutoConnectAux configAux;
  15. String saveAux_cb (AutoConnectAux& aux, PageArgument& arg);
  16. String loadAux_cb (AutoConnectAux& aux, PageArgument& arg);
  17. void setup_wifimgr();