How to recive in matlab arduino's data by serial comunication with bluetooth
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
Harshendra Shah
2020-4-8
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 个评论
另请参阅
类别
在 Help Center 和 File 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!