writeline
将 ASCII 数据行写入串行端口
说明
示例
从串行端口设备读写 ASCII 数据行
创建到串行端口设备的连接。在此示例中,COM3
上的串行端口连接到环回设备。
device = serialport("COM3",9600)
device = Serialport with properties: Port: "COM3" BaudRate: 9600 NumBytesAvailable: 0 Show all properties, functions
检查默认的 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"
清除串行端口连接。
clear device
输入参数
device
— 串行端口连接
serialport
对象
串行端口连接,指定为 serialport
对象。
示例: writeline(device,1:5)
写入串行端口连接 device
。
data
— ASCII 数据
字符向量 | 字符串标量
要写入的 ASCII 数据,指定为文本类型的字符向量或字符串标量。
示例: writeline(device,"*IDN?")
写入 ASCII 字符串 "*IDN?"
数据类型: char
| string
版本历史记录
在 R2019b 中推出
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)