serialEvent()

Beschreibung

Wird aufgerufen, wenn Daten verfügbar sind. Verwende Serial.read(), Serial.readBytes(), Serial.readBytesUntil(), Serial.readString(), or Serial.readStringUntil(), um diese Daten zu erfassen.

Die Funktionalität von serialEvent() ist nicht auf allen Arduino-Karten oder seriellen Schnittstellen verfügbar:

Board Available serialEvent() functions
Uno
Nano
serialEvent()
Mega serialEvent()
serialEvent1()
serialEvent2()
serialEvent3()
Leonardo
Micro
Yún
serialEvent1()
Uno WiFi Rev2
Nano Every
None
MKR boards
Nano 33 IoT
Zero
None
Nano 33 BLE None
Portenta H7 None
Due serialEvent()
serialEvent1()
serialEvent2()
serialEvent3()
101 serialEvent1()

Syntax

void serialEvent() { // Statement(s) }

Für Boards mit zusätzlichen seriellen Anschlüssen (siehe Liste der verfügbaren seriellen Anschlüsse für jede Karte auf der Serial-Hauptseite):

void serialEvent1() { // Statement(s) } void serialEvent2() { // Statement(s) } void serialEvent3() { // Statement(s) }

Parameter

  • Statement(s): Alle gültigen Aussagen.

Rückgabewert

Nichts.

Beispielcode

void setup() { Serial.begin(9600); } void loop() { } void serialEvent() { int incomingByte = Serial.read(); // prints the received data Serial.print("I received: "); Serial.println((char)incomingByte); }
  • Compile and upload the above code to Arduino
  • Type "Arduino" on Serial Monitor and click Send button:
COM6
Send
Autoscroll Show timestamp
Clear output
9600 baud  
Newline  
  • Das ergebnis am seriellen monitor:
COM6
Send
I received: A I received: r I received: d I received: u I received: i I received: n I received: o I received:
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