Reference   Language | Libraries | Comparison | Changes

WiFiNINA : Client class

read()

Reads data from the client. If no arguments are given, it will return the next character in the buffer.

Syntax

client.read()
client.read(buffer, size);

Parameters

buffer: buffer to hold incoming packets (char*)
len: maximum size of the buffer (int)

Returns

b: the next character in the buffer (char)
size: the size of the data
-1: if no data is available

See Also


Reference Home

Corrections, suggestions, and new documentation should be posted to the Forum.

The text of the Arduino reference is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.