亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? ssc32.asv

?? control SSC32 servo controller
?? ASV
?? 第 1 頁 / 共 5 頁
字號:

for i=1:length(com)
    fwrite(s,double(com(i)));
end
fwrite(s,13);

% --- Executes during object creation, after setting all properties.
function slider1_CreateFcn(hObject, eventdata, handles)
% hObject    handle to slider1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

% Hint: slider controls usually have a light gray background.
if isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
    set(hObject,'BackgroundColor',[.9 .9 .9]);
end


% --- Executes on slider movement.
function slider2_Callback(hObject, eventdata, handles)
% hObject    handle to slider2 (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,'Value') returns position of slider
%        get(hObject,'Min') and get(hObject,'Max') to determine range of slider
global A

p=round(get(hObject,'Value'));
set(handles.text4,'string',num2str(p));

snum=get(handles.uipanel5,'title');
num=str2num(snum(7:8));
A(num+1,4)=p;

% --- Executes during object creation, after setting all properties.
function slider2_CreateFcn(hObject, eventdata, handles)
% hObject    handle to slider2 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

% Hint: slider controls usually have a light gray background.
if isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
    set(hObject,'BackgroundColor',[.9 .9 .9]);
end



function edit1_Callback(hObject, eventdata, handles)
% hObject    handle to edit1 (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') returns contents of edit1 as text
%        str2double(get(hObject,'String')) returns contents of edit1 as a double
global A
str=get(hObject,'String');
min=str2num(str);
val=get(handles.slider1,'value');
if val<min
    set(handles.slider1,'value',min);
    set(handles.text3,'string',str);
end
set(handles.slider1,'min',min);
max=get(handles.slider1,'max');
step=get(handles.slider1,'sliderstep');
step(1)=1/(max-min);
set(handles.slider1,'sliderstep',step);

snum=get(handles.uipanel5,'title');
num=str2num(snum(7:8));
A(num+1,3)=min;

% --- Executes during object creation, after setting all properties.
function edit1_CreateFcn(hObject, eventdata, handles)
% hObject    handle to edit1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

% Hint: edit controls usually have a white background on Windows.
%       See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
    set(hObject,'BackgroundColor','white');
end



function edit2_Callback(hObject, eventdata, handles)
% hObject    handle to edit2 (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') returns contents of edit2 as text
%        str2double(get(hObject,'String')) returns contents of edit2 as a double
global A
str=get(hObject,'String');
max=str2num(str);
val=get(handles.slider1,'value');
if val>max
    set(handles.slider1,'value',max);
    set(handles.text3,'string',str);
end
set(handles.slider1,'max',max);
min=get(handles.slider1,'min');
step=get(handles.slider1,'sliderstep');
step(1)=1/(max-min);
set(handles.slider1,'sliderstep',step);

snum=get(handles.uipanel5,'title');
num=str2num(snum(7:8));
A(num+1,2)=max;

% --- Executes during object creation, after setting all properties.
function edit2_CreateFcn(hObject, eventdata, handles)
% hObject    handle to edit2 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

% Hint: edit controls usually have a white background on Windows.
%       See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
    set(hObject,'BackgroundColor','white');
end



function edit3_Callback(hObject, eventdata, handles)
% hObject    handle to edit3 (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') returns contents of edit3 as text
%        str2double(get(hObject,'String')) returns contents of edit3 as a double
global A
snum=get(handles.uipanel5,'title');
num=str2num(snum(7:8));
op=str2num(get(handles.edit3,'string'));
min=str2num(get(handles.edit1,'string'));
max=str2num(get(handles.edit2,'string'));
if op<min
    set(handles.edit3,'string',num2str(min));
    p=min;
elseif op>max
    set(handles.edit3,'string',num2str(max));
    p=max;
else
    p=op;
end
A(num+1,5)=p;

% --- Executes during object creation, after setting all properties.
function edit3_CreateFcn(hObject, eventdata, handles)
% hObject    handle to edit3 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

% Hint: edit controls usually have a white background on Windows.
%       See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
    set(hObject,'BackgroundColor','white');
end


% --- Executes on button press in pushbutton1.
function pushbutton1_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
global A s

op=str2num(get(handles.edit3,'string'));
min=str2num(get(handles.edit1,'string'));
max=str2num(get(handles.edit2,'string'));
if op<min
    set(handles.text3,'string',num2str(min));
    set(handles.slider1,'value',min);
    set(handles.edit3,'string',num2str(min));
    p=min;
elseif op>max
    set(handles.text3,'string',num2str(max));
    set(handles.slider1,'value',max);
    set(handles.edit3,'string',num2str(max));
    p=max;
else
    set(handles.text3,'string',num2str(op));
    set(handles.slider1,'value',op);
    p=op;
end

snum=get(handles.uipanel5,'title');
num=str2num(snum(7:8));
A(num+1,5)=p;
A(num+1,1)=p;
speed=A(num+1,4);
com=['#' num2str(num) 'P' num2str(p) 'S' num2str(speed)];

for i=1:length(com)
    fwrite(s,double(com(i)));
end
fwrite(s,13);

% --- Executes on button press in checkbox1.
function checkbox1_Callback(hObject, eventdata, handles)
% hObject    handle to checkbox1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Hint: get(hObject,'Value') returns toggle state of checkbox1



function edit4_Callback(hObject, eventdata, handles)
% hObject    handle to edit4 (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') returns contents of edit4 as text
%        str2double(get(hObject,'String')) returns contents of edit4 as a double


% --- Executes during object creation, after setting all properties.
function edit4_CreateFcn(hObject, eventdata, handles)
% hObject    handle to edit4 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

% Hint: edit controls usually have a white background on Windows.
%       See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
    set(hObject,'BackgroundColor','white');
end


% --- Executes on button press in pushbutton2.
function pushbutton2_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton2 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
listcom=get(handles.edit18,'string');
com=get(handles.edit4,'string');
if ~isempty(com)
    aa=char(listcom);  %cell array to char array 
    aa=strvcat(aa,com);     %2 char array
    set(handles.edit18,'string',cellstr(aa));%char array to cell array
end
set(handles.edit4,'string','');

% --- Executes on button press in pushbutton3.
function pushbutton3_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton3 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
global s
com='#0:0';

for i=1:length(com)
    fwrite(s,double(com(i)));
end
fwrite(s,13);

% --- Executes on button press in pushbutton4.
function pushbutton4_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton4 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
global s
com='#1:0';

for i=1:length(com)
    fwrite(s,double(com(i)));
end
fwrite(s,13);

% --- Executes on button press in pushbutton5.
function pushbutton5_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton5 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
global s
com='#2:0';

for i=1:length(com)
    fwrite(s,double(com(i)));
end
fwrite(s,13);

% --- Executes on button press in pushbutton6.
function pushbutton6_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton6 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
global s
com='#3:0';

for i=1:length(com)
    fwrite(s,double(com(i)));
end
fwrite(s,13);

% --- Executes on slider movement.
function slider3_Callback(hObject, eventdata, handles)
% hObject    handle to slider3 (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,'Value') returns position of slider
%        get(hObject,'Min') and get(hObject,'Max') to determine range of slider
global s A

p=round(get(hObject,'Value'));
set(handles.text10,'string',num2str(p));

snum=get(handles.uipanel6,'title');
num=str2num(snum(7:8));
A(num+1,1)=p;
speed=A(num+1,4);
com=['#' num2str(num) 'P' num2str(p) 'S' num2str(speed)];

for i=1:length(com)
    fwrite(s,double(com(i)));
end
fwrite(s,13);

% --- Executes during object creation, after setting all properties.
function slider3_CreateFcn(hObject, eventdata, handles)
% hObject    handle to slider3 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

% Hint: slider controls usually have a light gray background.
if isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
    set(hObject,'BackgroundColor',[.9 .9 .9]);
end


% --- Executes on slider movement.
function slider4_Callback(hObject, eventdata, handles)
% hObject    handle to slider4 (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,'Value') returns position of slider
%        get(hObject,'Min') and get(hObject,'Max') to determine range of slider
global A
p=round(get(hObject,'Value'));
set(handles.text11,'string',num2str(p));

snum=get(handles.uipanel6,'title');
num=str2num(snum(7:8));
A(num+1,4)=p;

% --- Executes during object creation, after setting all properties.
function slider4_CreateFcn(hObject, eventdata, handles)
% hObject    handle to slider4 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

% Hint: slider controls usually have a light gray background.
if isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
    set(hObject,'BackgroundColor',[.9 .9 .9]);
end



function edit5_Callback(hObject, eventdata, handles)
% hObject    handle to edit5 (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') returns contents of edit5 as text
%        str2double(get(hObject,'String')) returns contents of edit5 as a double
global A
str=get(hObject,'String');
min=str2num(str);
val=get(handles.slider3,'value');
if val<min
    set(handles.slider3,'value',min);
    set(handles.text10,'string',str);
end
set(handles.slider3,'min',min);
max=get(handles.slider3,'max');
step=get(handles.slider3,'sliderstep');
step(1)=1/(max-min);
set(handles.slider3,'sliderstep',step);

snum=get(handles.uipanel6,'title');
num=str2num(snum(7:8));
A(num+1,3)=min;

% --- Executes during object creation, after setting all properties.
function edit5_CreateFcn(hObject, eventdata, handles)
% hObject    handle to edit5 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

% Hint: edit controls usually have a white background on Windows.
%       See ISPC and COMPUTER.

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
综合精品久久久| 丁香婷婷综合激情五月色| 亚洲精品高清在线| 日韩美女啊v在线免费观看| 中文字幕中文字幕一区二区| 国产视频在线观看一区二区三区| 久久无码av三级| 26uuu亚洲综合色| 欧美不卡一区二区三区四区| 精品三级在线看| 精品va天堂亚洲国产| 久久人人超碰精品| 2023国产精品| 国产女同性恋一区二区| 欧美国产1区2区| 国产精品国产三级国产aⅴ无密码 国产精品国产三级国产aⅴ原创 | 欧美久久久久久久久久| 欧美写真视频网站| 欧美情侣在线播放| 日韩一区二区三区在线观看| 日韩一区二区在线看| 久久伊人中文字幕| 欧美国产日韩亚洲一区| 最新不卡av在线| 亚洲午夜三级在线| 美脚の诱脚舐め脚责91 | 激情综合五月婷婷| 国产99一区视频免费| 成人avav在线| 欧美性一区二区| 欧美一区二区在线观看| 精品久久久久久久人人人人传媒| 久久精品日韩一区二区三区| 国产精品理伦片| 亚洲五码中文字幕| 久久成人精品无人区| 不卡一区二区中文字幕| 欧美私模裸体表演在线观看| 日韩一区二区三区视频在线| 国产女主播视频一区二区| 亚洲综合色网站| 狠狠色狠狠色综合| 色婷婷av一区二区三区大白胸| 欧美伦理电影网| 国产亚洲综合在线| 一区二区三区不卡视频| 久久福利资源站| 91黄色免费版| 久久尤物电影视频在线观看| 一区二区三区视频在线看| 人人超碰91尤物精品国产| 床上的激情91.| 欧美久久一二区| 国产精品网曝门| 三级精品在线观看| kk眼镜猥琐国模调教系列一区二区| 欧美二区三区91| 中文久久乱码一区二区| 日韩国产欧美在线视频| 成人a区在线观看| 欧美成人精品1314www| 亚洲乱码国产乱码精品精小说| 久久激情综合网| 欧美在线观看视频一区二区 | 国产欧美一区视频| 亚洲成人av资源| 91亚洲永久精品| 2023国产精品自拍| 琪琪久久久久日韩精品| 色综合中文字幕国产 | 欧美欧美欧美欧美首页| 国产精品嫩草久久久久| 蜜桃视频在线观看一区二区| 99re8在线精品视频免费播放| 欧美xxxx在线观看| 视频一区欧美日韩| 在线影视一区二区三区| 国产日韩欧美不卡| 老司机精品视频导航| 欧美日韩一区二区三区四区五区| 国产精品久久久久三级| 激情小说欧美图片| 欧美二区三区的天堂| 亚洲一区成人在线| 93久久精品日日躁夜夜躁欧美| 久久午夜羞羞影院免费观看| 日本亚洲免费观看| 欧美精品乱码久久久久久按摩| 亚洲精品美腿丝袜| www.久久久久久久久| 国产午夜亚洲精品羞羞网站| 另类的小说在线视频另类成人小视频在线 | 国产成人av电影在线播放| 日韩三级在线观看| 日韩电影网1区2区| 欧美综合色免费| 一区二区高清免费观看影视大全| youjizz久久| 国产精品美女视频| jiyouzz国产精品久久| 国产精品色在线观看| 成人免费福利片| 亚洲欧洲成人自拍| av电影一区二区| 国产精品久久久久aaaa| 国产98色在线|日韩| 久久精品日产第一区二区三区高清版 | 一区二区三区中文字幕在线观看| 福利91精品一区二区三区| 久久在线观看免费| 国产a久久麻豆| 国产精品麻豆久久久| av色综合久久天堂av综合| 国产精品国产精品国产专区不蜜 | 久久国产精品色婷婷| 精品久久久网站| 国产福利视频一区二区三区| 欧美国产日韩亚洲一区| 97精品国产露脸对白| 一区二区在线观看免费| 在线看不卡av| 日韩精品一二三| 亚洲精品一区二区三区蜜桃下载 | 日韩三级免费观看| 伦理电影国产精品| 国产精品国产精品国产专区不片| 91黄色在线观看| 奇米色一区二区| 久久精品日韩一区二区三区| 91麻豆精品秘密| 午夜影视日本亚洲欧洲精品| 欧美成人vps| 99视频超级精品| 亚洲高清不卡在线观看| 欧美成人性福生活免费看| 粉嫩aⅴ一区二区三区四区五区| 亚洲天堂免费看| 7777精品伊人久久久大香线蕉的 | 91精品国产综合久久久蜜臀图片| 日韩极品在线观看| 久久亚洲综合色一区二区三区| 成人激情校园春色| 亚洲成人资源在线| 久久久综合视频| 色狠狠综合天天综合综合| 日本91福利区| 中文字幕中文在线不卡住| 欧美精品丝袜久久久中文字幕| 国内国产精品久久| 亚洲欧美另类久久久精品2019| 欧美精品在线一区二区三区| 国产另类ts人妖一区二区| 国产精品久久久久久久岛一牛影视 | 日一区二区三区| 国产清纯在线一区二区www| 欧美在线制服丝袜| 国产一区二区0| 亚洲一区在线观看视频| 精品久久久久久久久久久院品网| av亚洲精华国产精华精| 三级在线观看一区二区| 中文字幕在线视频一区| 欧美乱妇一区二区三区不卡视频| 国产.欧美.日韩| 亚洲mv在线观看| 中文字幕一区三区| 日韩欧美一二三区| 91国产视频在线观看| 国产精品一品二品| 亚洲国产三级在线| 日本一区二区成人在线| 欧美一区二区三区视频免费播放| 不卡在线观看av| 精品一区二区三区在线播放视频 | 亚洲1区2区3区视频| 国产欧美日韩在线| 337p亚洲精品色噜噜狠狠| av不卡免费在线观看| 激情深爱一区二区| 偷窥国产亚洲免费视频| 日韩理论片中文av| 日本一区二区视频在线| 日韩欧美国产一二三区| 91久久精品一区二区三| 成人ar影院免费观看视频| 国内成人精品2018免费看| 亚洲小说欧美激情另类| 亚洲另类色综合网站| 国产精品美女久久久久久2018| 精品欧美乱码久久久久久| 欧美精品精品一区| 在线免费观看成人短视频| 成人h精品动漫一区二区三区| 国产剧情在线观看一区二区| 蜜桃一区二区三区在线观看| 丝袜美腿亚洲一区二区图片| 香蕉久久一区二区不卡无毒影院 | 国产精品美日韩| 中文字幕不卡的av| 国产日韩欧美高清|