read multiple data from arduino serial monitor to matlab

조회 수: 1 (최근 30일)
Nazmi Rosly
Nazmi Rosly 2021년 8월 17일
I have successfully read the temperature from my thermocouple in the arduino and connected it in the matlab by displaying the value using tis command:
clear all
s = serial('com4');
fopen(s);
i = 1;
while(1)
data(i)= str2double(fscanf(s));
plot(data);
title('Temperature Monitoring')
xlabel('Time')
ylabel('Temperature')
pause(15);
i=i+1;
end
now i want to use more than 1 thermocouple to display in the matlab. How do I do it and how to differentiate between thermocouple 1,2 or more than that?

답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB Support Package for Arduino Hardware에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by