This page is also available in 3 other languages

Serial.readBytes()

설명

Serial.readBytes() reads characters from the serial port into a buffer. The function terminates if the determined length has been read, or it times out (see Serial.setTimeout()).

Serial.readBytes() returns the number of characters placed in the buffer. A 0 means no valid data was found.

Serial.readBytes() inherits from the Stream utility class.

문법

Serial.readBytes(buffer, length)

매개변수

buffer: the buffer to store the bytes in (char[] or byte[])

length : the number of bytes to read (int)

반환

The number of bytes placed in the buffer (size_t)

더보기