Create a connection to a serial port device. In this example, the serial port at
COM3
is connected to a loopback device.
device =
Serialport with properties:
Port: "COM3"
BaudRate: 9600
NumBytesAvailable: 0
Show all properties, functions
Check the default ASCII terminator.
Set the terminator to "CR"
and write a string of ASCII data. The
writeline
function automatically appends the terminator to the
data.
Write another string of ASCII data with the terminator automatically
appended.
Since the port is connected to a loopback device, the data you write to the device
is returned to MATLAB. Read a string of ASCII data. The readline
function
returns data until it reaches a terminator.
Read a string of ASCII data again to return the second string that you wrote.
Clear the serial port connection.