1234567891011121314151617181920212223 |
- #pragma once
- #include <WiFi.h>
- #include <WebServer.h>
- #include <SPIFFS.h>
- using WebServerClass = WebServer;
- #define AC_DEBUG
- #include <AutoConnect.h>
- /*
- AC_USE_SPIFFS indicates SPIFFS or LittleFS as available file systems that
- will become the AUTOCONNECT_USE_SPIFFS identifier and is exported as shown
- the valid file system. After including AutoConnect.h, the Sketch can determine
- whether to use FS.h or LittleFS.h by AUTOCONNECT_USE_SPIFFS definition.
- */
- #include <FS.h>
- #include <SPIFFS.h>
- extern AutoConnect portal;
- extern AutoConnectAux configAux;
- void setup_wifimgr();
|