Keyestudio ESP32 Manual page 28

Core board
Hide thumbs Also See for ESP32:
Table of Contents

Advertisement

www.keyestudio.com
// WiFi.scanNetworks will return the number of networks found
int n = WiFi.scanNetworks();
Serial.println("scan done");
if (n == 0) {
Serial.println("no networks found");
} else {
Serial.print(n);
Serial.println(" networks found");
for (int i = 0; i < n; ++i) {
// Print SSID and RSSI for each network found
Serial.print(i + 1);
Serial.print(": ");
Serial.print(WiFi.SSID(i));
Serial.print(" (");
Serial.print(WiFi.RSSI(i));
Serial.print(")");
Serial.println((WiFi.encryptionType(i)
":"*");
delay(10);
}
}
Serial.println("");
// Wait a bit before scanning again
delay(5000);
}
Click verify button to check the errors. If compiling successfully, the message
==
WIFI_AUTH_OPEN)?"
28

Advertisement

Table of Contents
loading

Related Products for Keyestudio ESP32

Table of Contents