Azzera filtri
Azzera filtri

How to use the Arduino with MATALB software

2 visualizzazioni (ultimi 30 giorni)
Louis Swaby
Louis Swaby il 28 Mag 2021
Risposto: Florian il 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 Commenti
Rachel Mannasse
Rachel Mannasse il 2 Feb 2023
Did you ever fix this problem?
Elise Lutz
Elise Lutz il 20 Feb 2023
I'm having the same issue with no luck :(

Accedi per commentare.

Risposte (3)

Florian
Florian il 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 il 28 Mag 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 Commenti
Dylan McSweeney
Dylan McSweeney il 14 Ott 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>>

Accedi per commentare.


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

Categorie

Scopri di più su MATLAB Support Package for Arduino Hardware in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by