Data acquisition from Arduino Uno and realtime plotting

7 vues (au cours des 30 derniers jours)
Andre
Andre le 7 Juin 2018
Modifié(e) : Hans Scharler le 12 Juin 2018
Hi guys, I have an Arduino Uno board and I want to aquire a signal values from a potentiometer and plot it in realtime, I've found a code to do it as you can se below:
arduino;
line(nan, nan, 'color','blue');
i=0;
while 1
pot = readVoltage(arduino,'A1');
x=get(line, 'xData');
y=get(line, 'yData');
x=[x i];
y=[y pot];
set(line, 'xData', x, 'yData', y);
i=i+0.001;
pause (1);
end
The problem is that is gives some several errors when I run the program such as: "Failed to open serial port COM3 to communicate with Arduino board Uno. Make sure there is no other MATLAB arduino object for this board. For troubleshooting, see Arduino Hardware Troubleshooting."
"Invalid pin format. Pin number must be a scalar integer."
I hope someone can help me

Réponse acceptée

Menghan
Menghan le 8 Juin 2018
Modifié(e) : Hans Scharler le 12 Juin 2018
arduino function creates a connection to the board each time you call it and only one connection to the board can exist at one time. You should change the code to something like this,
a = arduino;
line(nan,nan,...
...
while 1
pot = readVoltage(a, 'A1');
...
...
end

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB Support Package for Arduino Hardware dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by