Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ void loop() {
}

// This will send the request to the server
client.print("Send this data to server");
client.println("Send this data to server");

//read back one line from server
String line = client.readStringUntil('\r');
client.println(line);
Serial.println(line);

Serial.println("closing connection");
client.stop();
Expand Down