资源简介
利用Matlab的GUI设置,根据help文档进行设置TCPIP,在电脑连上wifi后能正常与ESP8266通信
代码片段和文件信息
function varargout = TCPIP(varargin)
% TCPIP MATLAB code for TCPIP.fig
% TCPIP by itself creates a new TCPIP or raises the existing
% singleton*.
%
% H = TCPIP returns the handle to a new TCPIP or the handle to
% the existing singleton*.
%
% TCPIP(‘CALLBACK‘hobjecteventDatahandles...) calls the local
% function named CALLBACK in TCPIP.M with the given input arguments.
%
% TCPIP(‘Property‘‘Value‘...) creates a new TCPIP or raises the
% existing singleton*. Starting from the left property value pairs are
% applied to the GUI before TCPIP_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to TCPIP_OpeningFcn via varargin.
%
% *See GUI Options on GUIDE‘s Tools menu. Choose “GUI allows only one
% instance to run (singleton)“.
%
% See also: GUIDE GUIDATA GUIHANDLES
% Edit the above text to modify the response to help TCPIP
% Last Modified by GUIDE v2.5 10-Mar-2019 21:22:10
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘ mfilename ...
‘gui_Singleton‘ gui_Singleton ...
‘gui_OpeningFcn‘ @TCPIP_OpeningFcn ...
‘gui_OutputFcn‘ @TCPIP_OutputFcn ...
‘gui_LayoutFcn‘ [] ...
‘gui_Callback‘ []);
if nargin && ischar(varargin{1})
gui_State.gui_Callback = str2func(varargin{1});
end
if nargout
[varargout{1:nargout}] = gui_mainfcn(gui_State varargin{:});
else
gui_mainfcn(gui_State varargin{:});
end
% End initialization code - DO NOT EDIT
% --- Executes just before TCPIP is made visible.
function TCPIP_OpeningFcn(hobject eventdata handles varargin)
% This function has no output args see OutputFcn.
% hobject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% varargin command line arguments to TCPIP (see VARARGIN)
% Choose default command line output for TCPIP
handles.output = hobject;
% Update handles structure
guidata(hobject handles);
% UIWAIT makes TCPIP wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = TCPIP_OutputFcn(hobject eventdata handles)
% varargout cell array for returning output args (see VARARGOUT);
% hobject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Get default command line output from handles structure
varargout{1} = handles.output;
function SendText_Callback(hobject eventdata handles)
% hobject handle to SendText (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: get(hobject‘String‘)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 27914845 2019-03-10 21:33 TCPIP\TCPIP.exe
文件 20093 2019-03-10 21:25 TCPIP\TCPIP.fig
文件 12884 2019-03-10 21:32 TCPIP\TCPIP.m
文件 102 2019-03-10 21:33 TCPIP\mccExcludedFiles.log
文件 1406 2019-03-10 21:33 TCPIP\readme.txt
文件 12 2019-03-10 21:33 TCPIP\requiredMCRProducts.txt
目录 0 2019-03-10 21:33 TCPIP\
相关资源
- 数字图像处理的matlab实现第二版 冈萨
- matlab实现spaceCarving三维重构
- MATLAB完整图库
- 神经网络识别手写数字含数据和代码
- Digital Image Processing Using Matlab_2ed_Gonz
- 系统辨识与自适应控制Matlab仿真
- 图像处理经典算法matlab程序
- MeanShift均值漂移目标追踪算法源码
- 滑膜控制的MATLAB仿真模型
- 图论算法及其MATLAB实现全书+源代码
- 显著性检测—HCmatlab版
- 精通MATLAB科学计算
- 《GPU与MATLAB混合编程》
- MATLAB教学视频:详解数据拟合的MATL
- 基于彩色识别的matlab车牌识别(字符
- MATLAB R2015a crack win 64 破解
- MATLAB应用精讲:图像处理与GUI设计篇
- Deep Learning 经典文章与代码matlab
- 金融数量分析——基于MATLAB编程第4版
- MATLAB R2014a完全自学一本通(下)
- MATLAB R2014a完全自学一本通(上)
- MATLAB R2014a从入门到精通 升级版
- 基于模型的设计_MCU篇.pdfMATLAB,SIMUl
- 神经网络理论与matlab7实现PDF电子书
- 雷英杰《MATLAB 遗传算法工具箱与应用
- matlab在数学建模中的应用含源程序
- 基于MATLAB的电力电子技术和交直流调
- matlab sfm三维重建案例
- 基于MATLAB的电力电子技术和交直流调
- 先进PID控制MATLAB仿真(4th.zip
评论
共有 条评论