Can't connect MATLAB 2016 to Arduino using arduino() function ??

2 次查看(过去 30 天)
Hi,
I am working on a servo motor that's gonna receive an angle value from matlab. Previously we were using arduino ide but there were problems in creating an arduino serial communication. Then we began using serial communication with arduino built-in function in matlab 2016.
But problem did not go away. Even a few minutes ago, the servo was doing the job. Then when we ran the program again, this popped up, again,
" Failed to open serial port COM5 to communicate with board Mega2560. Make sure there is no other MATLAB arduino object for this board. For troubleshooting, see Arduino Hardware Troubleshooting."
This has been really frasustrating ! Please guyz, anyone have any idea what went wrong here or how to solve it ??
Thanks in advance.
a=arduino();
s=servo(a,'D9');
angle=30/180;
writePosition(s,angle);

采纳的回答

Walter Roberson
Walter Roberson 2016-5-28
You have an existing arduino object. The single easiest way to make certain it is gone is to restart MATLAB.
  2 个评论
Kazi
Kazi 2016-5-30
编辑:Walter Roberson 2016-5-31
Thanks Walter, that worked. All I had to do was write these two in the beginning of the code
clear a
clear s
That's it !

请先登录,再进行评论。

更多回答(1 个)

HAMZA ABBASI
HAMZA ABBASI 2018-6-24
编辑:HAMZA ABBASI 2018-6-24
write clear all in the first line of code
  3 个评论
Alex Barbu
Alex Barbu 2019-3-10
it doesnt work even I cleared all before writing the code. it gets the same error:
>> a=arduino('COM41','Uno');
Failed to open serial port COM41 to communicate with board Uno. Make sure there is no other MATLAB arduino object for
this board. For troubleshooting, see Arduino Hardware Troubleshooting.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 MATLAB Support Package for Arduino Hardware 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by