How to recive in matlab arduino's data by serial comunication with bluetooth
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Nerea Perez Odriozola
el 31 de Mzo. de 2020
Respondida: Harshendra Shah
el 8 de Abr. de 2020
Hello everyone,
I'm trying to connect my Arduino Hardware to Matlab by Bluetooth. My proyect needs to read the dat Arduino writes in the serial monitor by matlab, I manage to do so this way:
delete (instrfind ({'Port'},{'COM3'}));
s=serial ('COM3');
s.BaudRat=9600;
warning ('off','MATLAB:serial:fscanf:unsuccessfulRead');
fopen (s);
but I would like to conect this by bluetooth and not by USB, but I can not find a code to do so.
0 comentarios
Respuestas (1)
Harshendra Shah
el 8 de Abr. de 2020
You can setup the arduino board to connect to MATLAB via Bluetooth using the following command in the MATLAB Command Window:
>> arduinosetup
This will launch Arduino hardware setup interface.
After executing this command, you can refer to the following documentation page for step by step instructions of configuring your Arduino hardware to communicate via Bluetooth:
I hope this helps.
0 comentarios
Ver también
Categorías
Más información sobre MATLAB Support Package for Arduino Hardware en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!