![]() |
WiFi Connect
Version 1.0
WiFi connection manager for ESP32 and ESP8266 including OLED support
|
#include <Arduino.h>
#include <WiFi.h>
#include <WebServer.h>
#include <DNSServer.h>
#include <memory>
#include <esp_wifi.h>
#include "WC_AP_HTML.h"
#include "WiFiConnectParam.h"
Go to the source code of this file.
Classes | |
class | WiFiConnect |
Class that helps to connect to WiFi networks, that also has captive portal web interface for configuration. This is the base class for WiFiConntectOLED which displays information on a OLED display. More... | |
Macros | |
#define | ESP_getChipId() ((uint32_t)ESP.getEfuseMac()) |
Gets an ID from the chip. | |
Enumerations | |
enum | AP_Continue { AP_NONE, AP_LOOP, AP_RESTART, AP_RESET } |
This is the documentation for WiFiConnect for the Arduino platform. It is a WiFi connection manager for use with the popular ESP8266 and ESP32 chips. It contains a captive portal to allow easy connection and changing of WiFi netwoks via a web based interface and allows for additional user parameters.
You can view the project at https://github.com/smurf0969/WiFiConnect. Further information is also available in the project Wiki.
This is a heavily customised version from the origional WiFiManager developed by https://github.com/tzapu .
This library depends on ESP8266 Arduino Core and ESP32 Arduino Core being present on your system. Please make sure you have installed the latest version before using this library.
Written by Stuart Blair.
GNU General Public License v3.0 licence, all text here must be included in any redistribution and you should receive a copy of the license file.
enum AP_Continue |