Skip to content

Commit 723d138

Browse files
authored
Translate readBytesUntil.adoc
1 parent 40e80e0 commit 723d138

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

Language/Functions/Communication/Serial/readBytesUntil.adoc

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,30 +13,30 @@ title: Serial.readBytesUntil()
1313
--
1414

1515
[float]
16-
=== Description
17-
Serial.readBytesUntil() reads characters from the serial buffer into an array. The function terminates if the terminator character is detected, the determined length has been read, or it times out (see link:../setTimeout[Serial.setTimeout()]).
16+
=== 説明
17+
Serial.readBytesUntil() シリアルバッファから読み取った文字列を配列に格納します.終端文字を読み込んだ時や,指定の長さの文字列が読み込まれた時,タイムアウトした時に,この関数は終了されます.(link:../setTimeout[Serial.setTimeout()]を参照)
1818

19-
`Serial.readBytesUntil()` returns the number of characters read into the buffer. A 0 means no valid data was found.
19+
`Serial.readBytesUntil()` はバッファに読み込まれた文字数を返します.0は有効なデータがなかったことを意味します.
2020

21-
`Serial.readBytesUntil()` inherits from the link:../../stream[Stream] utility class.
21+
`Serial.readBytesUntil()` はlink:../../stream[Stream] utility classを継承しています.
2222
[%hardbreaks]
2323

2424

2525
[float]
26-
=== Syntax
26+
=== 構文
2727
`Serial.readBytesUntil(character, buffer, length)`
2828

2929

3030
[float]
31-
=== Parameters
32-
`character` : the character to search for (`char`)
31+
=== パラメータ
32+
`character` : 探したい文字(`char`)
3333

34-
`buffer`: the buffer to store the bytes in (`char[]` or `byte[]`)
34+
`buffer`: 文字列を格納するバッファ(`char[]` or `byte[]`)
3535

36-
`length` : the number of bytes to read (`int`)
36+
`length` : 読み込むバイト数 (`int`)
3737

3838
[float]
39-
=== Returns
39+
=== 戻り値
4040
`byte`
4141

4242
--
@@ -50,7 +50,7 @@ Serial.readBytesUntil() reads characters from the serial buffer into an array. T
5050
--
5151

5252
[float]
53-
=== See also
53+
=== 参照
5454
// Link relevant content by category, such as other Reference terms (please add the tag #LANGUAGE#),
5555
// definitions (please add the tag #DEFINITION#), and examples of Projects and Tutorials
5656
// (please add the tag #EXAMPLE#) ►►►►► THIS SECTION IS MANDATORY ◄◄◄◄◄

0 commit comments

Comments
 (0)