RS-232 Serial Communication (Mark-10)

5 次查看(过去 30 天)
I am trying to use serial communication between Mark-10 ESM1500 test stand and matlab to record data. Has anyone done this?

采纳的回答

David Hill
David Hill 2021-12-6
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 个评论
Huo
Huo 2022-11-5
Please do you know how to connect the digital force gauge of the mark-10 Series7 with Matlab.

请先登录,再进行评论。

更多回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by