How to use the Arduino with MATALB software

5 visualizaciones (últimos 30 días)
Louis Swaby
Louis Swaby el 28 de Mayo de 2021
Respondida: Florian el 6 de Mzo. de 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 comentarios
Rachel Mannasse
Rachel Mannasse el 2 de Feb. de 2023
Did you ever fix this problem?
Elise Lutz
Elise Lutz el 20 de Feb. de 2023
I'm having the same issue with no luck :(

Iniciar sesión para comentar.

Respuestas (3)

Florian
Florian el 6 de Mzo. de 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 el 28 de Mayo de 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 comentarios
Walter Roberson
Walter Roberson el 5 de Oct. de 2022
Try with
dbstop if caught error
Dylan McSweeney
Dylan McSweeney el 14 de Oct. de 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>>

Iniciar sesión para comentar.


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

Categorías

Más información sobre MATLAB Support Package for Arduino Hardware en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by