We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f905395 commit fab4f0cCopy full SHA for fab4f0c
libraries/ESP8266WebServer/examples/Filters/Filters.ino
@@ -10,7 +10,7 @@ const char *password = "...";
10
11
// Your AP WiFi Credentials
12
// ( This is the AP your ESP will broadcast )
13
-const char *ap_ssid = "ESP32_Demo";
+const char *ap_ssid = "ESP8266_Demo";
14
const char *ap_password = "";
15
16
WebServer server(80);
@@ -66,7 +66,7 @@ void setup(void) {
66
Serial.print("IP address: ");
67
Serial.println(WiFi.localIP());
68
69
- if (MDNS.begin("esp32")) {
+ if (MDNS.begin("esp8266")) {
70
Serial.println("MDNS responder started");
71
}
72
@@ -96,5 +96,4 @@ void setup(void) {
96
97
void loop(void) {
98
server.handleClient();
99
- delay(2); //allow the cpu to switch to other tasks
100
0 commit comments