Read serial data in Matlab(in .m file of GUI, not in command window) and display on Matlab GUI
5 views (last 30 days)
Show older comments
Hello all, I need to read serial data continuously and display it on Matlab GUI. 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
0 Comments
Accepted Answer
Walter Roberson
on 5 Dec 2015
2 Comments
Walter Roberson
on 5 Dec 2015
Which MATLAB release are you using?
Are you getting the list of ports, COM1, COM2, and so on?
There was an old release about 5 years ago where you might have to change
serPortn = get(handles.portList, 'Value');
to
serPortn = get(handles(1).portList, 'Value');
and probably other places would need changes to. The bug was corrected in the next release (and probably in a service pack as well.)
More Answers (0)
See Also
Categories
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!