Cannot program board Nano3

6 views (last 30 days)
Magnus354
Magnus354 on 11 Apr 2019
Answered: Madhu Govindarajan on 11 Apr 2019
Hello,
I'm trying to connect Matlab with my Arduino Nano. I installed the hardware packages for arduino and try to run the following code to plot live voltage data:
clc
global a;
if ~isempty(instrfind)
fclose(instrfind);
delete(instrfind);
end
a=arduino('COM13','nano');
inverv=200;
init_time=1;
x=0;
while(init_time<interv)
b=readVoltage(a,'A0');
x=[x,b];
plot(x)
grid on
init_time=init_time+1;
end
If I run this code, I get an error message:
"Cannot program board Nano3 (COM2). Please make sure the board is supported and the port and board type are correct. For more information, see Arduino Hardware Troubleshooting."
With "a=arduino('COM13','nano','Trace', true);", I get the message (text file).
So, I tried to resolve the problem by installing the hardware package new, installing drivers, Arduino IDE new, changing COM port, try to run MATLAB as administrator...
Has anybody an idea, what the problem could be?
I can program the Arduino Nano with Arduino IDE...

Answers (1)

Madhu Govindarajan
Madhu Govindarajan on 11 Apr 2019
I would recommend you try arduinosetup first and if that is successful, then connect with arduino using a=arduino instead of mentioning the port number manually.

Products

Community Treasure Hunt

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

Start Hunting!