AWS IoT for ESP32 v1.0.0
An ESP-IDF based solution
|
WiFi library header file. More...
Go to the source code of this file.
Data Structures | |
struct | wifiCred_st |
WiFi credentials. More... | |
Enumerations | |
enum | wifiStates_et { STATE_WIFI_IDLE , STATE_WIFI_SCAN , STATE_WIFI_START , STATE_WIFI_DISCONNECTED , STATE_WIFI_CONNECTED , STATE_WIFI_MAX } |
Functions | |
bool | WIFI_isConnected () |
Check if WiFi is connected. More... | |
char * | WIFI_getIpAddress () |
Get the IP address. More... | |
uint8_t | WIFI_getSignalStrength () |
Get WiFi signal strength. More... | |
int8_t | WIFI_getRssi () |
Get WiFi RSSI. More... | |
void | WIFI_printStatus () |
Print the WiFi status. More... | |
const char * | WIFI_getStateString () |
Get WiFi state as string. More... | |
uint16_t | WIFI_getApList (char *pBuffer) |
Get list of avaialable Access Points (AP) More... | |
WiFi library header file.
enum wifiStates_et |
uint16_t WIFI_getApList | ( | char * | pBuffer | ) |
Get list of avaialable Access Points (AP)
[out] | pBuffer | outputs list of APs |
char * WIFI_getIpAddress | ( | ) |
Get the IP address.
none |
int8_t WIFI_getRssi | ( | ) |
Get WiFi RSSI.
none |
uint8_t WIFI_getSignalStrength | ( | ) |
Get WiFi signal strength.
none |
const char * WIFI_getStateString | ( | ) |
Get WiFi state as string.
none |
IDLE | - for STATE_WIFI_IDLE |
SCAN | - for STAT_WIFI_SCAN |
START | - for STATE_WIFI_START |
DISCONNECTED | - for STATE_WIFI_DISCONNECTED |
CONNECTED | - for STATE_WIFI_CONNECTED |
bool WIFI_isConnected | ( | ) |
Check if WiFi is connected.
none |
true | if connected |
false | if not connected |
void WIFI_printStatus | ( | ) |
Print the WiFi status.
none |