Filter löschen
Filter löschen

How do i display real-time water level in tank using serial readings (digital) from Arduino on Matlab GUI

1 Ansicht (letzte 30 Tage)
Hello all, I need to read serial data continuously and display it on Matlab GUI. I want to build a simple GUI to display water level in tank. I need to know which things of the .m file need to be updated because I am new to Matlab and its GUI environment. Please help...
Thanks in advance
  4 Kommentare
Iemad Sofi
Iemad Sofi am 9 Nov. 2019
im sorry but i only know this lines of codes. i really need your help to teach me the codes. thankyou.
ps:
A is the maximum level of water. B is the minimum. i only need to display when the tank is max or min.
thanks again
Walter Roberson
Walter Roberson am 9 Nov. 2019
You probably should not be doing the delete(handles.figure1) . You probably should not be using a second figure at all. The figure you show for gui_cuba.fig should be enough.
ax = axes(handles.axes1);
if ~isfield(handles, 'levelplot') || ~isvalid(handles.levelplot)
handles.levelplot = animatedline('Parent', ax);
title(ax, 'Water Level');
xlabel(ax, 'time (s)')
ylabel(ax, 'depth (furlongs)')
guidata(hObject, handles)
end
current_depth = appropriate value from parameter or from arduino
current_time = appropriate value from parameter or from arduino
addpoints(handles.levelplot, current_time, current_depth);

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Mehr zu MATLAB Support Package for Arduino Hardware finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by