Serial.availableForWrite()

Descrição

Retorna o número de bytes (caracteres) livres no buffer de transmissão serial que podem ser ocupados sem bloquear a operação de trasnmissão.

Sintaxe

Serial.availableForWrite()

Parâmetros

Retorna

O número de bytes livres no buffer de transmissão.

Código de Exemplo

String myString = "Welcome to ArduinoGetStarted.com!\n"; void setup() { Serial.begin(9600); // opens serial port, sets data rate to 9600 bps int wlen = Serial.availableForWrite(); // prints the received data Serial.print("TX buffer size: "); Serial.println(wlen); } void loop() { // check if Tx buffer is enough to write the string if (Serial.availableForWrite() > myString.length()) { // prints the string Serial.print(myString); delay(1000); } }
  • The result on Serial Monitor:
Newbiely | Arduino IDE 2.3.8
──
File
Edit
Sketch
Tools
Help
Arduino Uno
Newbiely.ino
···
8 Serial.println("Hello World!");
Output
Serial Monitor
Message (Enter to send message to 'Arduino Uno' on 'COM15')
New Line
9600 baud
TX buffer size: 63 Welcome to ArduinoGetStarted.com! Welcome to ArduinoGetStarted.com! Welcome to ArduinoGetStarted.com! Welcome to ArduinoGetStarted.com!
Ln 11, Col 1
Arduino Uno on COM15
2

※ Notas e Advertências:

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)* 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

ARDUINO BUY RECOMMENDATION

Arduino UNO R3
Arduino Starter Kit
Disclosure: Some links in this section are Amazon affiliate links. If you make a purchase through these links, we may earn a commission at no extra cost to you.
Additionally, some links direct to products from our own brand, DIYables .

※ OUR MESSAGES