MATLAB语言的串口助手

1,在命令行下运行guide命令,在向导中单击Create New GUI,选择Blank GUI(Default);然后在下面选择保存路径,命名文件名为Serial_Port;完成之后点击OK。
MATLAB语言的串口助手_第1张图片
2,编辑图形界面,如下图所示,在左侧选择控件,拖到右侧区域中,右键设置属性;
MATLAB语言的串口助手_第2张图片
3,编辑源代码,在上面菜单选项中,单击右侧第4个M-file Editor按钮,开始编辑Serial_Port.m文件。
M文件源代码如下所示,请注意控件编号与函数号相对应。


function varargout = Serial_Port(varargin)
% SERIAL_PORT M-file for Serial_Port.fig
%      SERIAL_PORT, by itself, creates a new SERIAL_PORT or raises the existing
%      singleton*.
%
%      H = SERIAL_PORT returns the handle to a new SERIAL_PORT or the handle to
%      the existing singleton*.
%
%      SERIAL_PORT('CALLBACK',hObject,eventData,handles,...) calls the local
%      function named CALLBACK in SERIAL_PORT.M with the given input arguments.
%
%      SERIAL_PORT('Property','Value',...) creates a new SERIAL_PORT or raises the
%      existing singleton*.  Start

你可能感兴趣的:(MATLAB语言的串口助手)