We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ee08d0 commit c5af87aCopy full SHA for c5af87a
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