RS-232 Serial Communication (Mark-10)

5 views (last 30 days)
I am trying to use serial communication between Mark-10 ESM1500 test stand and matlab to record data. Has anyone done this?

Accepted Answer

David Hill
David Hill on 6 Dec 2021
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
Huo
Huo on 5 Nov 2022
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)

Community Treasure Hunt

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

Start Hunting!