How to control through opc data access explorer

조회 수: 3 (최근 30일)
Luong Tu
Luong Tu 2016년 4월 23일
댓글: Samuel Vergara 2016년 7월 3일
I can not use opc data as a button to capture image, my code is:
da = opcda('localhost', 'KEPware.KEPServerEx.V4');
connect(da);
grp = addgroup(da);
itm1 = additem(grp, 'Channel1.Device1.Group1.capture');
data = read(itm1,'device');
opcdata= data.Value;
if (opcdata==1)
opcdata=0;
vid=handles.vid;
pause(3);
data=getsnapshot(vid);
imshow(data);
savename = strcat('Desktop' ,'hinh', '.jpg');
imwrite(data,savename);
  댓글 수: 2
Samuel Vergara
Samuel Vergara 2016년 7월 3일
You got some error that can share? The only thing that I do is use the connect after the item adition, but I'm not sure if it's the solution.
da = opcda('localhost', 'KEPware.KEPServerEx.V4');
grp = addgroup(da);
itm1 = additem(grp, 'Channel1.Device1.Group1.capture');
connect(da);

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Server Connection and Browsing에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by