How to recive in matlab arduino's data by serial comunication with bluetooth

조회 수: 4 (최근 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.

답변 (1개)

Harshendra Shah
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.

Community Treasure Hunt

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

Start Hunting!

Translated by