资源简介
matlab开发-带图形用户界面的步进电机控制。带图形用户界面的步进电机控制
代码片段和文件信息
function motor(stepdelaydirection)
%Controlling a stepper motor
%step must be integer.
%delay is in seconds.
%direction: 1 or 2.
%--------------------------------------
%Author: Diego Barrag醤 Guerrero
%For more information visit: www.matpic.com
%E-mial: diegokillemall@yahoo.com
%--------------------------------------
warning off
if nargin==1
delay=1;direction=1;
elseif nargin==2
direction=1;
end
if isnan(step)||step<0
error(‘Step value must be positive integer‘);
elseif direction~=1 && direction~=2
error(‘Direction options: 1 or 2‘)
elseif isnan(delay)||delay<0
error(‘Delay value must be positive integer‘)
end
step=ceil(step);
inout=digitalio(‘parallel‘‘LPT1‘);
dato=addline(inout0:3‘out‘);
if direction ==1
sent=[3 6 12 9];
else
sent=[9 12 6 3];
end
m=1;
for n=1:step
putvalue(datosent(m));
pause(delay);
m=m+1;
if m>4
m=1;
end
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 10779 2006-03-18 22:47 10. stepper_motor\circuit.gif
文件 947 2008-06-18 18:45 10. stepper_motor\motor.m
文件 2585 2007-09-19 13:39 10. stepper_motor\motorGUI.fig
文件 5341 2008-06-18 19:30 10. stepper_motor\motorGUI.m
文件 7168 2008-06-18 19:37 10. stepper_motor\Thumbs.db
文件 515 2008-05-08 15:38 trabajos_MATLAB.txt
文件 34 2008-06-18 20:17 web_site.txt
文件 1551 2014-02-12 12:30 license.txt
相关资源
- matlab开发-级联H桥多电平转换三相
- matlab开发-MFTireGUI
- matlab开发-自适应霍夫曼编码技术字符
- matlab开发-ConnectFour
- matlab开发-floodfillscanline
- matlab开发-Paretosurfacenavigator
- matlab开发-分步序达尔文粒子群优化
- matlab开发-改进的解决方案经济调度方
- matlab开发-为Resnet50网络设计工具箱模
- matlab开发-sigmoid
- matlab开发-同步发电机的详细模型,包
- matlab开发-多层反向传播神经网络
- matlab开发-Parrotminirones的模拟支持包
- matlab开发-nnsysid
- matlab开发-使用gnewton-raphson方法查找任
- matlab开发-UR5控制Matlab
-
matlab开发-mssamultiob
jectivesalpswarmalg - matlab开发-Vasicek
- matlab开发-直流到全桥逆变器
- matlab开发-使用xFoiland ParseCGeometric参数
- matlab开发-如何模拟6到10个输入状态空
- matlab开发-mtype340
- matlab开发-rafaelaeroXFOILinterface
-
matlab开发-单相三电平去阻尼Pwmba
s - matlab开发-scatter3sph
- matlab开发-TraCI4Matlab
- matlab开发-三个27电平转换器,带有单
- matlab开发-DynaSimDynaSim
- matlab开发-spy2m
- matlab开发-landmask
评论
共有 条评论