How do i display real-time water level in tank using serial readings (digital) from Arduino on Matlab GUI
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
Walter Roberson
2019-11-9
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);
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Arduino Hardware 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!