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

4 views (last 30 days)
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.

Answers (1)

Harshendra Shah
Harshendra Shah on 8 Apr 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.

Community Treasure Hunt

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

Start Hunting!