Skip to content

Commit fab4f0c

Browse files
Update Filters.ino
1 parent f905395 commit fab4f0c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

libraries/ESP8266WebServer/examples/Filters/Filters.ino

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const char *password = "...";
1010

1111
// Your AP WiFi Credentials
1212
// ( This is the AP your ESP will broadcast )
13-
const char *ap_ssid = "ESP32_Demo";
13+
const char *ap_ssid = "ESP8266_Demo";
1414
const char *ap_password = "";
1515

1616
WebServer server(80);
@@ -66,7 +66,7 @@ void setup(void) {
6666
Serial.print("IP address: ");
6767
Serial.println(WiFi.localIP());
6868

69-
if (MDNS.begin("esp32")) {
69+
if (MDNS.begin("esp8266")) {
7070
Serial.println("MDNS responder started");
7171
}
7272

@@ -96,5 +96,4 @@ void setup(void) {
9696

9797
void loop(void) {
9898
server.handleClient();
99-
delay(2); //allow the cpu to switch to other tasks
10099
}

0 commit comments

Comments
 (0)