8000 Merge pull request #2 from karan6190/added-examples · karan6190/arduino-esp32@0c2680e · GitHub
[go: up one dir, main page]

Skip to content

Commit 0c2680e

Browse files
authored
Merge pull request #2 from karan6190/added-examples
Updated OTAWebUpdater
2 parents 82930fb + 18b8ee9 commit 0c2680e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libraries/ArduinoOTA/examples/OTAWebUpdater/OTAWebUpdater.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
#include <WiFi.h>
22
#include <WiFiClient.h>
3-
#include <ESP32WebServer.h>
3+
#include <WebServer.h>
44
#include <ESPmDNS.h>
55
#include <Update.h>
66

77
const char* host = "ESP32";
88
const char* ssid = "xxx";
99
const char* password = "xxxx";
1010

11-
ESP32WebServer server(80);
11+
WebServer server(80);
1212

1313
const char* loginIndex = "<form name='loginForm'>"
1414
"<table width='20%' bgcolor='A09F9F' align='center'>"

0 commit comments

Comments
 (0)
0