Serial.readStringUntil()
설명
readStringUntil() 직렬 버퍼에서 문자열로 문자를 읽습니다. 시간이 초과되면 함수가 종료됩니다 (setTimeout() 참조)
Serial.readStringUntil()은 Stream 유틸리티 클래스에서 상속합니다.
문법
Serial.readStringUntil(delimiter)
매개변수
- delimiter : 찾은 문자 입니다. 허용되는 데이터 타입은 char.
반환값
- 시리얼 버퍼에서 읽어 들인(delimiter 문자 까지) 전체 문자열을 반환합니다.
예제 코드
void setup() {
Serial.begin(9600); // opens serial port, sets data rate to 9600 bps
}
void loop() {
// check if data is available
if (Serial.available() > 0) {
// read the incoming string:
String incomingString = Serial.readStringUntil('\n');
// prints the received data
Serial.print("I received: ");
Serial.println(incomingString);
}
}
- Select Newline at the ending selection of Serial Monitor
- Type "HELLO" on Serial Monitor
- Click Send button:
COM6
Autoscroll
Clear output
9600 baud
Newline
- 시리얼 모니터에 결과:
COM6
I received: HELLO
Autoscroll
Clear output
9600 baud
Newline
※ 주의 및 경고:
- delimiter 문자는 시리얼 버퍼에서 버려 집니다.
- 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 - Serial
- 언어 : Serial.available()
- 언어 : Serial.begin()
- 언어 : Serial.end()
- 언어 : Serial.find()
- 언어 : Serial.findUntil()
- 언어 : Serial.flush()
- 언어 : if(Serial)
- 언어 : Serial.parseFloat()
- 언어 : Serial.parseInt()
- 언어 : Serial.peek()
- 언어 : Serial.print()
- 언어 : Serial.println()
- 언어 : Serial.read()
- 언어 : Serial.readBytes()
- 언어 : Serial.readString()
- 언어 : serialEvent()
- 언어 : Serial.setTimeout()
- 언어 : Serial.write()
※ 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.