Info
This question is closed. Reopen it to edit or answer.
Unable to stop Arduino Bluetooth data pulling
1 view (last 30 days)
Show older comments
Hi, I would like to pull information from the arduino through bluetooth and be able to stop the data when a figure is closed. However, once I close the figure the code continues to run, I'm even unable to Ctrl+C in the command and the only way to stop the program is to close matlab.
Any ideas? Thank you
clear
clc
%fclose(instrfind)
%Open Serial COM Port
s = Bluetooth('RNBT-AD09',1);
fopen(s);
fid = fopen( 'Arduino.txt', 'w' );
g = figure;
pause(.5)
while ishandle(g) %Loop when Plot is Active
dat = fscanf(s)
fprintf(fid, '%s\r\n', dat);
end
fclose(fid);
fclose(instrfind);
0 Comments
Answers (1)
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!