I want to find...

検索

Shares

Table of Content

Serial.readBytes()

[Serial]

説明

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)

戻り値

byte

See also


Language Reference Home

86Duino のリファレンスのテキストは Arduino レファレンス を編集したもので、 Creative Commons Attribution-ShareAlike 3.0 License下でライセンスされています。リファレンス内のコードサンプルはパブリックドメインとして公開されています。

上部へスクロール