We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent faf5fbd commit d4c17b0Copy full SHA for d4c17b0
hardware/esp8266com/esp8266/libraries/DNSServer/examples/CaptivePortalAdvanced/handleHttp.ino
@@ -73,7 +73,7 @@ void handleWifi() {
73
Serial.println("scan done");
74
if (n > 0) {
75
for (int i = 0; i < n; i++) {
76
- server.sendContent(String() + "\r\n<tr><td>SSID " + String(WiFi.SSID(i)) + String((WiFi.encryptionType(i) == ENC_TYPE_NONE)?" ":" *") + " (" + WiFi.RSSI(i) + ")</td></tr>");
+ server.sendContent(String() + "\r\n<tr><td>SSID " + WiFi.SSID(i) + String((WiFi.encryptionType(i) == ENC_TYPE_NONE)?" ":" *") + " (" + WiFi.RSSI(i) + ")</td></tr>");
77
}
78
} else {
79
server.sendContent(String() + "<tr><td>No WLAN found</td></tr>");
0 commit comments