How to use the Arduino with MATALB software

4 views (last 30 days)
Louis Swaby
Louis Swaby on 28 May 2021
Answered: Florian on 6 Mar 2023
I installed the MATLAB support package for Arduino Hardware but am unable to communicate with my arduino Uno. When setting up the board it says that the connection is good. However, when I try to use the example code below it does not work.
a = arduino();
I get the following error:
No constructor 'string' with matching signature found.
  5 Comments
Elise Lutz
Elise Lutz on 20 Feb 2023
I'm having the same issue with no luck :(

Sign in to comment.

Answers (3)

Florian
Florian on 6 Mar 2023
Hi, as I had the same issue with my 2022b instalation, maybe my solution will help someone.
instead the non working
a = arduino()
use auto suggestion after the first bracket (TAB ) to input something like:
a = arduino("/dev/cu.usbmodem144301","Nano33IoT") %the pink stuff should be different for you
And now, at least for me, there is no error message

Walter Roberson
Walter Roberson on 28 May 2021
Which MATLAB release are you using?
What shows up for
which -all String
which -all string
The error message you are getting most commonly occurs when you are using a file system that is not case sensitive (NTFS and Apple HFS+ by default are not case sensitive), and you have a function defined with the other cases than the class you are trying to invoke. So in this case, if you had a String.m on your MATLAB path that was earlier than MATLAB's @string folder, then the String.m might get matched because the file system is not case sensitive, but then MATLAB internally compares the String name to the desired string and sees they are different and gives the error message you indicated.
  5 Comments
Dylan McSweeney
Dylan McSweeney on 14 Oct 2022
>> a = arduino();
No constructor 'string' with matching signature found.
>> which -all String
/Applications/MATLAB_R2022b.app/toolbox/matlab/strfun/@string/string.m % string constructor
/Applications/MATLAB_R2022b.app/toolbox/matlab/datatypes/@opaque/string.m % opaque method
/Applications/MATLAB_R2022b.app/toolbox/matlab/bigdata/@tall/string.m % tall method
/Applications/MATLAB_R2022b.app/toolbox/matlab/codetools/@mtree/string.m % mtree method
/Applications/MATLAB_R2022b.app/toolbox/matlab/datatypes/categorical/@categorical/string.m % categorical method
>>
>> dbstop if caught error
>> a = arduino()
Caught-error breakpoint was hit in base>base.addprop at line 0. The error was:
'dhardwareInstance' is already defined as a property.
In workspace belonging to arduino
K>>

Sign in to comment.


Zoltán
Zoltán on 7 Oct 2022
Same for me, seems to be an Apple Monterey problem.

Tags

Community Treasure Hunt

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

Start Hunting!