We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3838e58 commit 7dd5036Copy full SHA for 7dd5036
libraries/ESP8266WiFi/examples/WiFiClientBasic/WiFiClientBasic.ino
@@ -54,11 +54,11 @@ void loop() {
54
}
55
56
// This will send the request to the server
57
- client.print("Send this data to server");
+ client.println("Send this data to server");
58
59
//read back one line from server
60
String line = client.readStringUntil('\r');
61
- client.println(line);
+ Serial.println(line);
62
63
Serial.println("closing connection");
64
client.stop();
0 commit comments