Serial.write()
Description
Ecrit des données binaires sur le port série. Ces données sont envoyées comme une série d'octet; pour envoyer les caractères correspondants aux chiffres d'un nombre, utiliser plutôt la fonction print().
Syntaxe
Serial.write(val)
Serial.write(str)
Serial.write(buf, len)
Paramètres
- val: une valeur à envoyer sous forme d'octet simple
- str: une chaîne à envoyer sous forme d'une série d'octets
- buf: un tableau pour envoyer une série d'octets
- len: la largeur du tableau
Exemple
void setup() {
Serial.begin(9600);
Serial.write(45); // write a byte with the value 45 => '-' character
Serial.write('\n'); // write a newline character
Serial.write("ArduinoGetStarted.com\n"); // write a string terminated by a newline character
byte buf[] = {'A', 'r', 'd', 'u', 'i', 'n', 'o'};
Serial.write(buf, 7); // write an array
}
void loop() {
}
- The result on Serial Monitor:
COM6
-
ArduinoGetStarted.com
Arduino
Autoscroll
Clear output
9600 baud
Newline
※ ARDUINO BUY RECOMMENDATION
Arduino UNO R3 | |
Arduino Starter Kit |
Please note: These are Amazon affiliate links. If you buy the components through these links, We will get a commission at no extra cost to you. We appreciate it.