How to read data from arduino bluetooth?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
kintali narendra
il 21 Set 2016
Commentato: Walter Roberson
il 23 Set 2016
I am successful in sending data from matlab to arduino via Bluetooth, but I am unable to read the data sent by Arduino-bluetooth(JY-MCU).
% serial communication between matlab and bluetooth
delete(instrfind);
b = Bluetooth('BTslave',1);
fopen(b); %write and read function
fwrite(b,'K');
A = fread(b,5)
fclose(b);
clear('b');
I am able to read 5 values but they are just random values not the right values.
0 Commenti
Risposta accettata
Walter Roberson
il 21 Set 2016
Watch out for the default on fread() being 'double' . If the bluetooth device is sending data in some other datatype you need to adjust your fread() to know that.
6 Commenti
Walter Roberson
il 23 Set 2016
Earlier I indicated that the default for fread was double. That was incorrect: the default is uint8=>double . Each character of the printable values was being interpreted as a separate value, but you needed a group of printable values to be read together as a single value.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Arduino Hardware in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!