![]() |
WiFi Connect
Version 1.0
WiFi connection manager for ESP32 and ESP8266 including OLED support
|
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...
#include <WiFiConnect.h>
Public Member Functions | |
WiFiConnect () | |
Create WiFiConnect class. | |
boolean | startConfigurationPortal () |
Starts the Access Portal for setting SSID and Password for connecting to a network and any custom user parameters. Uses the default access point name and password. More... | |
boolean | startConfigurationPortal (AP_Continue apcontinue) |
Starts the Access Portal for setting SSID and Password for connecting to a network and any custom user parameters. Uses the default access point name and password, but allows for specifying how to continue if network not connected. More... | |
boolean | startConfigurationPortal (AP_Continue apcontinue, const char *apName, const char *apPassword=NULL) |
Starts the Access Portal for setting SSID and Password for connecting to a network and any custom user parameters. More... | |
boolean | startParamsPortal () |
Starts the custom Parameters Portal using default access point name and password. More... | |
boolean | startParamsPortal (AP_Continue apcontinue) |
Starts the custom Parameters Portal using default access point name and password, but allows for specifying how to continue. More... | |
boolean | startParamsPortal (AP_Continue apcontinue, const char *apName, const char *apPassword=NULL) |
Starts the custom Parameters Portal. More... | |
void | addParameter (WiFiConnectParam *p) |
Adds a custom parameter to be displayed in the accesspoint and parameters portals. Custom parameters can be used to save information that you do not want to hard code i.e. IP address, Port number that can be saved to the file system. More... | |
void | setAPName (const char *apName) |
Sets the name for the Access Point, setting a default based on the ESP chip id if needed. More... | |
const char * | getAPName () |
Gets the Access Point name or the default based on the ESP chip id if not already set. More... | |
void | resetSettings () |
A helper to clear the settings for the last connected network. Remember to comment out or remove and re-upload your code otherwise chip will constantly restart. | |
boolean | autoConnect () |
Tries to connect to the last connected WiFi network. More... | |
boolean | autoConnect (const char *ssidName, const char *ssidPassword=NULL, WiFiMode_t acWiFiMode=WIFI_STA) |
Tries to connect to the specified WiFi network. More... | |
void | setAPStaticIPConfig (IPAddress ip, IPAddress gw, IPAddress sn) |
Used to set a static ip/gateway and subnet mask for the access point. IP and DNS Gateway are normally the same for a captive portal. More... | |
void | setSTAStaticIPConfig (IPAddress ip, IPAddress gw, IPAddress sn) |
Used to set a static ip/gateway and subnet mask for the local network. More... | |
void | setAPCallback (void(*func)(WiFiConnect *)) |
Sets the function to be called when we enter Access Point for configuration. Gets passed a the WiFiConnect for additional usage within function. More... | |
void | setSaveConfigCallback (void(*func)(void)) |
Sets the function to be called when we need to save the custom parameters/configuration. More... | |
void | setDebug (boolean isDebug) |
Used to turn on or off messages to the serial port/monitor. More... | |
void | setRetryAttempts (int attempts) |
Sets how many times we should try to connect to the WiFi network. More... | |
void | setConnectionTimeoutSecs (int timeout) |
Sets how long to wait for the connection before failing. More... | |
void | setAPModeTimeoutMins (int mins) |
Sets the timeout for when the Access Point is idle. More... | |
boolean | captivePortal () |
Redirect to captive portal if we get a request for another domain. Return true in that case so the page handler do not try to handle the request again. More... | |
const char * | statusToString (int state) |
A helper function to return the string version of a wifi network state. More... | |
int | getRSSIasQuality (int RSSI) |
Function to convert RSSI into a usable range 0-100 so we can use it to exclude poor networks. More... | |
boolean | isIp (String str) |
Function to check if a given string is an IP Address. More... | |
String | toStringIp (IPAddress ip) |
Function to return a IPAddress as a string representation. More... | |
virtual void | displayTurnOFF (int ms=5000) |
Virtual method overriden in WiFiConnectOLED. More... | |
virtual void | displayLoop () |
Virtual method overriden in WiFiConnectOLED. More... | |
virtual void | displayON () |
Virtual method overriden in WiFiConnectOLED. More... | |
Protected Member Functions | |
template<typename Generic > | |
void | DEBUG_WC (Generic text) |
Outputs debug messages. More... | |
virtual void | displayConnecting (int attempt, int totalAttempts) |
Virtual method overriden in WiFiConnectOLED. More... | |
virtual void | displayConnected () |
Virtual method overriden in WiFiConnectOLED. More... | |
virtual void | displayAP () |
Virtual method overriden in WiFiConnectOLED. More... | |
virtual void | displayParams () |
Virtual method overriden in WiFiConnectOLED. More... | |
virtual void | displayManualReset () |
Virtual method overriden in WiFiConnectOLED. More... | |
Protected Attributes | |
boolean | _debug = false |
Flag to determine wheter to output mesages or not. | |
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.
boolean WiFiConnect::startConfigurationPortal | ( | ) |
Starts the Access Portal for setting SSID and Password for connecting to a network and any custom user parameters. Uses the default access point name and password.
boolean WiFiConnect::startConfigurationPortal | ( | AP_Continue | apcontinue | ) |
Starts the Access Portal for setting SSID and Password for connecting to a network and any custom user parameters. Uses the default access point name and password, but allows for specifying how to continue if network not connected.
apcontinue | What should the access point do if there is still no connection. AP_NONE - continue running code, AP_LOOP - stay in an infinate loop, AP_RESET - Restart the ESP |
boolean WiFiConnect::startConfigurationPortal | ( | AP_Continue | apcontinue, |
const char * | apName, | ||
const char * | apPassword = NULL |
||
) |
Starts the Access Portal for setting SSID and Password for connecting to a network and any custom user parameters.
apcontinue | What should the access point do if there is still no connection. AP_NONE - continue running code, AP_LOOP - stay in an infinate loop, AP_RESET - Restart the ESP, handy for sensors if you network goes down, do they keep trying to connect. |
apName | The Name to use for the access point |
apPassword | The optional Password to protect the access point |
boolean WiFiConnect::startParamsPortal | ( | ) |
Starts the custom Parameters Portal using default access point name and password.
boolean WiFiConnect::startParamsPortal | ( | AP_Continue | apcontinue | ) |
Starts the custom Parameters Portal using default access point name and password, but allows for specifying how to continue.
apcontinue | What should the access point do if there is still no connection. AP_NONE - continue running code, AP_LOOP - stay in an infinate loop, AP_RESET - Restart the ESP |
boolean WiFiConnect::startParamsPortal | ( | AP_Continue | apcontinue, |
const char * | apName, | ||
const char * | apPassword = NULL |
||
) |
Starts the custom Parameters Portal.
apcontinue | What should the access point do if there is still no connection. AP_NONE - continue running code, AP_LOOP - stay in an infinate loop, AP_RESET - Restart the ESP |
apName | The Name to use for the access point |
apPassword | The optional Password to protect the access point |
void WiFiConnect::addParameter | ( | WiFiConnectParam * | p | ) |
Adds a custom parameter to be displayed in the accesspoint and parameters portals. Custom parameters can be used to save information that you do not want to hard code i.e. IP address, Port number that can be saved to the file system.
p | The custom parameter to add. |
void WiFiConnect::setAPName | ( | const char * | apName | ) |
Sets the name for the Access Point, setting a default based on the ESP chip id if needed.
apName | The new name for the access point. |
const char * WiFiConnect::getAPName | ( | ) |
Gets the Access Point name or the default based on the ESP chip id if not already set.
boolean WiFiConnect::autoConnect | ( | ) |
Tries to connect to the last connected WiFi network.
The return value can be used to automatically start the access point so you may change networks if required.
boolean WiFiConnect::autoConnect | ( | const char * | ssidName, |
const char * | ssidPassword = NULL , |
||
WiFiMode_t | acWiFiMode = WIFI_STA |
||
) |
Tries to connect to the specified WiFi network.
ssidName | The SSID of the netqork you want to connect to. |
ssidPassword | The password for a secure network. |
WiFiMode | The WiFi mode |
void WiFiConnect::setAPStaticIPConfig | ( | IPAddress | ip, |
IPAddress | gw, | ||
IPAddress | sn | ||
) |
Used to set a static ip/gateway and subnet mask for the access point. IP and DNS Gateway are normally the same for a captive portal.
ip | The IP address that you want to access the portal through. |
gw | The gateway address for the DNS server, usually the same as IP for captive portal. |
sn | The subnet mask for the access point, usually 255.255.255.0 |
void WiFiConnect::setSTAStaticIPConfig | ( | IPAddress | ip, |
IPAddress | gw, | ||
IPAddress | sn | ||
) |
Used to set a static ip/gateway and subnet mask for the local network.
ip | The IP address that you want to use on the network. |
gw | The gateway address for the DNS server or network router. |
sn | The subnet mask for the access point, usually 255.255.255.0 for local networks. |
void WiFiConnect::setAPCallback | ( | void(*)(WiFiConnect *) | func | ) |
Sets the function to be called when we enter Access Point for configuration. Gets passed a the WiFiConnect for additional usage within function.
func | The function to be called. |
void WiFiConnect::setSaveConfigCallback | ( | void(*)(void) | func | ) |
Sets the function to be called when we need to save the custom parameters/configuration.
func | The function to be called. This function should be short running and ideally just set. a flag for processing else where. |
void WiFiConnect::setDebug | ( | boolean | isDebug | ) |
Used to turn on or off messages to the serial port/monitor.
isDebug | Set to true to enable messages. |
void WiFiConnect::setRetryAttempts | ( | int | attempts | ) |
Sets how many times we should try to connect to the WiFi network.
attempts | How may attampts. |
void WiFiConnect::setConnectionTimeoutSecs | ( | int | timeout | ) |
Sets how long to wait for the connection before failing.
timeout | How may seconds to wait for the connection to be made. |
void WiFiConnect::setAPModeTimeoutMins | ( | int | mins | ) |
Sets the timeout for when the Access Point is idle.
mins | The number of minutes to before exiting an idle access point. |
boolean WiFiConnect::captivePortal | ( | ) |
Redirect to captive portal if we get a request for another domain. Return true in that case so the page handler do not try to handle the request again.
const char * WiFiConnect::statusToString | ( | int | state | ) |
A helper function to return the string version of a wifi network state.
state | The state that we want the string representation of. |
int WiFiConnect::getRSSIasQuality | ( | int | RSSI | ) |
Function to convert RSSI into a usable range 0-100 so we can use it to exclude poor networks.
RSSI | The quality/signal strength of the WiFi network. |
boolean WiFiConnect::isIp | ( | String | str | ) |
Function to check if a given string is an IP Address.
str | The string to process. |
String WiFiConnect::toStringIp | ( | IPAddress | ip | ) |
Function to return a IPAddress as a string representation.
ip | The IPAddress to process. |
|
virtual |
Virtual method overriden in WiFiConnectOLED.
This function gets overridden by WiFiConnectOLED, please view its documentation.
Reimplemented in WiFiConnectOLED.
|
virtual |
Virtual method overriden in WiFiConnectOLED.
This function gets overridden by WiFiConnectOLED, please view its documentation.
Reimplemented in WiFiConnectOLED.
|
virtual |
Virtual method overriden in WiFiConnectOLED.
This function gets overridden by WiFiConnectOLED, please view its documentation.
Reimplemented in WiFiConnectOLED.
|
protected |
Outputs debug messages.
text | The text to be outputted |
|
protectedvirtual |
Virtual method overriden in WiFiConnectOLED.
This function gets overridden by WiFiConnectOLED, please view its documentation.
Reimplemented in WiFiConnectOLED.
|
protectedvirtual |
Virtual method overriden in WiFiConnectOLED.
This function gets overridden by WiFiConnectOLED, please view its documentation.
Reimplemented in WiFiConnectOLED.
|
protectedvirtual |
Virtual method overriden in WiFiConnectOLED.
This function gets overridden by WiFiConnectOLED, please view its documentation.
Reimplemented in WiFiConnectOLED.
|
protectedvirtual |
Virtual method overriden in WiFiConnectOLED.
This function gets overridden by WiFiConnectOLED, please view its documentation.
Reimplemented in WiFiConnectOLED.
|
protectedvirtual |
Virtual method overriden in WiFiConnectOLED.
This function gets overridden by WiFiConnectOLED, please view its documentation.
Reimplemented in WiFiConnectOLED.