RS-232 Serial Communication (Mark-10)

I am trying to use serial communication between Mark-10 ESM1500 test stand and matlab to record data. Has anyone done this?

 Accepted Answer

Look at your manual for your instrument to set up the parameters
s = serialport('COM1',115200);%create object
s.DataBits=8;
s.StopBits=1;
s.Parity='none';
write(s,'n',char);
data = read(s,1,'uint8');

1 Comment

Please do you know how to connect the digital force gauge of the mark-10 Series7 with Matlab.

Sign in to comment.

More Answers (0)

Categories

Find more on Data Import and Analysis in Help Center and File Exchange

Asked:

on 6 Dec 2021

Commented:

Huo
on 5 Nov 2022

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!