Serial.write()

설명

이진 데이터를 직렬 포트에 씁니다. 이 데이터는 하나의 바이트 또는 일련된 바이트로 전송됩니다. 숫자의 자릿수를 나타내는 문자를 보내려면 대신 Serial.print() 함수를 사용하십시오.

문법

Serial.write(val)

Serial.write(str)

Serial.write(buf, len)

아두이노 메가의 경우 다음을 이용하세요:

Serial1, Serial2, Serial3 (Serial 대신)

매개변수

  • val: 단일 바이트로 보낼 값
  • str: 일련의 바이트로 보낼 문자열
  • buf: 일련의 바이트로 보낼 배열

반환값

  • size_t: 값을 쓴 byte수를 반환합니다.

예제 코드

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() { }
  • 시리얼 모니터에 결과:
COM6
Send
- ArduinoGetStarted.com Arduino
Autoscroll Show timestamp
Clear output
9600 baud  
Newline  

※ 주의 및 경고:

  • Arduino IDE 1.0부터 직렬 전송은 비동기식입니다. 전송 버퍼에 빈 공간이 충분 Serial.write()하면 문자가 직렬로 전송되기 전에를 반환합니다. 전송 버퍼가 가득 차면 버퍼 Serial.write()에 충분한 공간이있을 때까지 차단됩니다. 에 대한 호출을 차단하지 않으려면 Serial.write()먼저 availableForWrite()를 사용하여 전송 버퍼의 여유 공간 양을 확인할 수 있습니다 .
  • 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)

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.

※ OUR MESSAGES