We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7c2468 commit c10ba6bCopy full SHA for c10ba6b
examples/Client/Client.ino
@@ -45,7 +45,7 @@ void makeRequest() {
45
});
46
47
client->onData([](void* arg, AsyncClient* client, void* data, size_t len) {
48
- // Serial.printf("** data received by client: %" PRIu16 ": len=%u\n", client->localPort(), len);
+ Serial.printf("** data received by client: %" PRIu16 ": len=%u\n", client->localPort(), len);
49
50
51
client->write("GET /README.md HTTP/1.1\r\nHost: " HOST "\r\nUser-Agent: ESP\r\nConnection: close\r\n\r\n");
0 commit comments