Serial.availableForWrite()

Beschreibung

Ruft die Anzahl der zum Schreiben verfügbaren Bytes (Zeichen) im seriellen Puffer ab, ohne den Schreibvorgang zu blockieren.

Syntax

Serial.availableForWrite()

Parameter

  • Serial: Serielles Port-Objekt. Die Liste der verfügbaren seriellen Anschlüsse für jedes Board auf der Serial-Hauptseite.

Rückgabewert

Die Anzahl der zum Schreiben verfügbaren Bytes.

Beispielcode

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); } }
  • Das ergebnis am seriellen monitor:
COM6
Send
TX buffer size: 63 Welcome to ArduinoGetStarted.com! Welcome to ArduinoGetStarted.com! Welcome to ArduinoGetStarted.com! Welcome to ArduinoGetStarted.com!
Autoscroll Show timestamp
Clear output
9600 baud  
Newline  

※ Anmerkungen und Warnungen:

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)

Siehe Auch

ARDUINO KAUFEMPFEHLUNG

Arduino UNO R3
Arduino Starter Kit
Bitte Beachten: Dies sind Partnerschaftslinks. Wenn Sie die Komponenten über diese Links Kaufen, können wir eine Provision erhalten, ohne weitere Kosten für Sie. Wir Schätzen es.

※ OUR MESSAGES