read multiple data from arduino serial monitor to matlab

1 次查看(过去 30 天)
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