Serial.readBytes()
Descrição
Serial.readBytes() lê caracteres da porta serial e os move para um buffer. A função termina se a quantidade de bytes determinada foi lida, ou se ocorre time-out (ver Serial.setTimeout()).
Serial.readBytes() retorna o número de caracteres colocados no buffer. Um valor 0 indica que dados não foram encontrados.
A função Serial.readBytes() é herdada da classe Stream.
Sintaxe
Serial.readBytes(buffer, length)
Parâmetros
- Serial: objeto porta serial. Veja a lista de portas seriais disponíveis em cada placa no Serial - Página principal
- buffer: o buffer para se armazenar os bytes (char[] ou byte[])
- length : o número de bytes a serem lidos (int)
Retorna
o número de bytes colocados no buffer (size_t)
Código de Exemplo
- Type "HELLO" on Serial Monitor and click Send button:
- The result on Serial Monitor:
※ Notas e Advertências:
- Serial.readBytes() may read a stream of bytes in multiple times (resulting in multiple fragments). To read a stream of bytes at one time, there are two ways:
- Based on the delimiter: Use Serial.readBytesUntil() with delimiter.
- Based on the fixed length: Wait until the fixed number of bytes is available. for example:
- Make sure that the read length does NOT exceed the buffer size. The below is the best practice:
- Serial functions are not only used for the communication between an Arduino board and Serial Monitor of Arduino IDE but also used for the communication between:
- An Arduino board and other Arduino board
- An Arduino board and other sensors/devices
- An Arduino board and computer (any Serial software on computer)
Ver Também
- Linguagem : Arduino - Serial
- Linguagem : Serial.available()
- Linguagem : Serial.availableForWrite()
- Linguagem : Serial.begin()
- Linguagem : Serial.end()
- Linguagem : Serial.find()
- Linguagem : Serial.findUntil()
- Linguagem : Serial.flush()
- Linguagem : Serial.getTimeout()
- Linguagem : if(Serial)
- Linguagem : Serial.parseFloat()
- Linguagem : Serial.parseInt()
- Linguagem : Serial.peek()
- Linguagem : Serial.print()
- Linguagem : Serial.println()
- Linguagem : Serial.read()
- Linguagem : Serial.readBytesUntil()
- Linguagem : Serial.readString()
- Linguagem : Serial.readStringUntil()
- Linguagem : serialEvent()
- Linguagem : Serial.setTimeout()
- Linguagem : Serial.write()
※ ARDUINO BUY RECOMMENDATION
Arduino UNO R3 | |
Arduino Starter Kit |