writeline
説明
例
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 データ文字列をもう一度読み取り、書き込んだ 2 つ目の文字列を返します。
readline(device)
ans = "world"
Bluetooth 接続をクリアします。
clear device
入力引数
device
— Bluetooth デバイスの接続
bluetooth
オブジェクト
Bluetooth デバイスの接続。bluetooth
オブジェクトとして指定します。
例: data = writeline(device,data)
は、ASCII データを Bluetooth 接続 device
に書き込みます。
data
— ASCII データ
文字ベクトル | string スカラー
書き込む ASCII データ。テキストの文字ベクトルまたは string スカラーとして指定します。
例: writeline(device,"helloworld")
は、ASCII データ "helloworld"
を書き込みます。
データ型: string
バージョン履歴
R2020b で導入
MATLAB コマンド
次の MATLAB コマンドに対応するリンクがクリックされました。
コマンドを MATLAB コマンド ウィンドウに入力して実行してください。Web ブラウザーは 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)