configureTerminator
설명
configureTerminator(
는 지정된 Bluetooth® 장치와의 읽기 및 쓰기 통신 둘 다를 위한 종결자를 정의합니다. 허용되는 종결자 값은 device
,terminator
)"LF"
(디폴트 값), "CR"
, "CR/LF"
및 0
에서 255
사이의 정수 값입니다. 이 구문은 device
의 Terminator
속성을 설정합니다.
종결자를 설정한 후에는 writeline
과 readline
을 사용하여 ASCII 종결 문자열 데이터를 쓰고 읽어 들이십시오.
configureTerminator(
는 읽기 통신과 쓰기 통신에 대한 개별 종결자를 정의합니다.device
,readterminator,writeterminator
)
예제
읽기 및 쓰기 통신에 동일한 종결자 설정하기
근처 Bluetooth 장치에 대한 연결을 만듭니다.
device = bluetooth("TestDevice")
device = bluetooth with properties: Name: "TestDevice" Address: "BC275C50533C" Channel: 1 NumBytesAvailable: 0 NumBytesWritten: 0 Show all properties
읽기 종결자와 쓰기 종결자를 모두 "CR/LF"
로 설정합니다.
configureTerminator(device,"CR/LF")
변경 내용을 확인합니다.
device.Terminator
ans = "CR/LF"
읽기 및 쓰기 통신에 서로 다른 종결자 설정하기
근처 Bluetooth 장치에 대한 연결을 만듭니다.
device = bluetooth("TestDevice")
device = bluetooth with properties: Name: "TestDevice" Address: "BC275C50533C" Channel: 1 NumBytesAvailable: 0 NumBytesWritten: 0 Show all properties
읽기 종결자를 "CR"
로, 쓰기 종결자를 10
으로 설정합니다.
configureTerminator(device,"CR",10)
변경 내용을 확인합니다.
device.Terminator
ans=1×2 cell array
{["CR"]} {[10]}
배열의 첫 번째 요소는 읽기 종결자이고 두 번째 요소는 쓰기 종결자입니다.
Bluetooth 장치에 ASCII 데이터 라인을 쓰고 읽어오기
근처 Bluetooth 장치에 대한 연결을 만듭니다. 이 예제에서 HC-06 Bluetooth 모듈은 루프백 장치로 구성되어 있습니다.
device = bluetooth("HC-06")
device = bluetooth with properties: Name: "HC-06" Address: "98D331FB3B77" Channel: 1 NumBytesAvailable: 0 NumBytesWritten: 0 Show all properties
디폴트 ASCII 종결자를 확인합니다.
device.Terminator
ans = "LF"
종결자를 "CR"
로 설정하고 ASCII 데이터 문자열을 씁니다. writeline
함수는 데이터에 자동으로 종결자를 추가합니다.
configureTerminator(device,"CR") writeline(device,"hello")
종결자가 자동으로 추가되도록 하여 ASCII 데이터 문자열을 씁니다.
writeline(device,"world")
장치가 루프백 장치로 구성되어 있으므로 장치에 쓰는 데이터는 MATLAB®으로 반환됩니다. ASCII 데이터 문자열을 읽어 들입니다. readline
함수는 종결자에 도달할 때까지 데이터를 반환합니다.
readline(device)
ans = "hello"
ASCII 데이터 문자열을 다시 읽어 와서 두 번째로 쓴 문자열을 반환합니다.
readline(device)
ans = "world"
Bluetooth 연결을 지웁니다.
clear device
입력 인수
device
— Bluetooth 장치 연결
bluetooth
객체
Bluetooth 장치 연결로, bluetooth
객체로 지정됩니다.
예: configureTerminator(device,"CR")
은 Bluetooth 연결 device
의 종결자 값을 설정합니다.
terminator
— ASCII 종결자
"LF"
(디폴트 값) | "CR"
| "CR/LF"
| 0~255
읽기 및 쓰기 통신을 위한 ASCII 종결자로, "LF"
, "CR"
, "CR/LF"
또는 0에서 255 사이의 숫자형 정수 값으로 지정됩니다. 읽기 및 쓰기 둘 모두에 동일한 종결자를 설정할 때 이 형식을 사용하십시오. 종결자 값이 "CR/LF"
인 장치에서 읽어 올 경우, 읽기는 CR
과 LF
가 함께 나타날 때 종료됩니다. 종결자 값이 "CR/LF"
인 장치에 쓸 경우, 쓰기는 CR
과 LF
를 모두 추가하고 종료됩니다. 이 입력 인수는 Terminator
속성을 설정합니다.
예: configureTerminator(device,"CR/LF")
는 읽기 종결자와 쓰기 종결자를 모두 "CR/LF"
로 설정합니다.
데이터형: single
| double
| int8
| int16
| int32
| int64
| uint8
| uint16
| uint32
| uint64
| char
| string
readterminator,writeterminator
— 읽기 및 쓰기를 위한 ASCII 종결자
"LF"
(디폴트 값) | "CR"
| "CR/LF"
| 0~255
읽기 또는 쓰기 통신을 위한 ASCII 종결자로, "LF"
, "CR"
, "CR/LF"
또는 0에서 255 사이의 숫자형 정수 값으로 지정됩니다. 읽기 및 쓰기에 서로 다른 종결자를 설정할 때 이 형식을 사용하십시오. 종결자 값이 "CR/LF"
인 장치에서 읽어 올 경우, 읽기는 CR
과 LF
가 함께 나타날 때 종료됩니다. 종결자 값이 "CR/LF"
인 장치에 쓸 경우, 쓰기는 CR
과 LF
를 모두 추가하고 종료됩니다. 이 입력 인수는 Terminator
속성을 설정합니다.
예: configureTerminator(device,"CR",10)
은 읽기 종결자를 "CR"
로, 쓰기 종결자를 10
으로 설정합니다.
데이터형: single
| double
| int8
| int16
| int32
| int64
| uint8
| uint16
| uint32
| uint64
| char
| string
버전 내역
R2020b에 개발됨
MATLAB 명령
다음 MATLAB 명령에 해당하는 링크를 클릭했습니다.
명령을 실행하려면 MATLAB 명령 창에 입력하십시오. 웹 브라우저는 MATLAB 명령을 지원하지 않습니다.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)