-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathreadBinNetwork.m
32 lines (28 loc) · 984 Bytes
/
readBinNetwork.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
%% Matlab script to try reading in a binary file that was output from the
% python program that will be used to run the neural network
function start_monitoring_NAS()
%% Small GUI
DlgH = figure('Position',[500 500 250 100],'Name','Matlab',...
'NumberTitle','off');
H = uicontrol('Style', 'PushButton', 'String', 'Break',...
'Callback', 'delete(gcf)');
Text = uicontrol('Style','text','Position',[100 0 200 100],...
'Background',[0.9 0.9 0.9],'FontSize',25);
drawnow
%% While loop pulling the data from the network location
x_old = 0;
while (ishandle(H))
fileID = fopen('//lebnas1.epfl.ch/microsc125/Watchdog/binary_output.dat','r');
x = fread(fileID);
fclose(fileID);
x = size(x,1);
Text.String = num2str(x);
set(Text,'Background', [0.5 0.5 0.5] + (x/512));
if x ~= x_old
disp(x)
disp(datetime('now','TimeZone','local','Format','HH:mm:ss.SSS'))
end
x_old = x;
pause(0.01)
end
end