Skip to content

Commit 8004e04

Browse files
committedAug 19, 2021
delete serial
1 parent a9b5f22 commit 8004e04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎what_is_my_esp_ip.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ const char* ssid = "yourNetworkName";
44
const char* password = "yourNetworkPassword";
55
String url = "http://www.onclick.lv/esp/?mac="+WiFi.macAddress()+"&ip="+WiFi.localIP().toString();
66
void setup () {
7-
Serial.begin(115200);
7+
// Serial.begin(115200);
88
WiFi.begin(ssid, password);
99
while (WiFi.status() != WL_CONNECTED) {
1010
delay(1000);
11-
Serial.print("Connecting..");
11+
// Serial.print("Connecting..");
1212
}
1313
}
1414
void loop() {

0 commit comments

Comments
 (0)
Please sign in to comment.