Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

Unable to stop Arduino Bluetooth data pulling

1 Ansicht (letzte 30 Tage)
Vincent I
Vincent I am 24 Apr. 2014
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
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);

Antworten (1)

Vincent I
Vincent I am 24 Apr. 2014
Solved the problem by having a pause in the loop
while ishandle(g) %Loop when Plot is Active
dat = fscanf(s)
fprintf(fid, '%s\r\n', dat);
pause(.1)
end

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by