()write
כותבת מידע בינרי לערוץ התקשורת. הנתונים נשלחים כבית (byte) או סדרה של בתים (bytes), כדי לשלוח תווים המייצגים את המספר, השתמשו בפונקציית ()print במקום.תחביר
- קוד: בחר הכל
Serial.write(val);
Serial.write(str);
Serial.write(buf, len);
Arduino Mega also supports: Serial1, Serial2, Serial3 (in place of Serial)
פרמטרים:
val - הערך שישלח כ-byte
str - מחרוזת תווים שישלחו כסדרה של bytes
buf - מערך שישלח כסדרה של bytes
len - אורך של המערך
הפונקציה מחזירה את כמות הבתים (bytes) שנשלחו לערוץ התקשורת.
דוגמה
- קוד: בחר הכל
void setup(){
Serial.begin(9600);
}
void loop(){
Serial.write(45); // send a byte with the value 45
int bytesSent = Serial.write(“hello”); //send the string “hello” and return the length of the string.
}
ראו גם:
()begin()end
()available
()read
()peek
()flush
()println
()SerialEvent
פירוט שפת תכנות לסביבת Arduino
עמוד זה הוא תרגום של ()write לפי רישיון Creative Commons Attribution-ShareAlike 3.0.