您好,登錄后才能下訂單哦!
這篇文章主要介紹“OPC自動化接口編程需要注意哪些問題”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“OPC自動化接口編程需要注意哪些問題”文章能幫助大家解決問題。
注意事項如下:
(1)用SyncRead(組的同步讀)和AsyncRead(組的異步讀)讀取服務數據
c#代碼原形:
SyncRead (short source,int NumItems,ref Arrray ServerHandles,out Values,outErrors,out Qualities,out
TimeStamps);
AsyncRead(int NumItems,ref Arrray ServerHandles,outErrors,int TransactionID,out int CancelID);
大家可以看出這兩個函數里邊都有一個ref Arrray ServerHandles,
如果我們在向函數傳遞參數的時候,
寫成:
int[] handle=new int []{item.ServerHandle};
System.Array ServerHandles=(System.Array)handle;
這時候會出現“參數不正確”的錯誤異常。
應該改成:
int[] handle=new int []{/*函數內部數據下標是從1開始的,所以要把第0位空出來*/0,item.ServerHandle};
System.Array ServerHandles=(System.Array)handle;
OPCDAAuto.dll內部源碼:
for (LONG ii = 1; ii <= NumItems; ii++)
{
LONG hHandle = NULL;
SafeArrayGetElement(*ppServerHandles, &ii, &hHandle);
phHandles[ii-1] = hInvalidHandle;
ppItems[ii-1] = NULL;
COPCItem* pItem = LookupItem(hHandle);
if (pItem != NULL)
{
phHandles[ii-1] = pItem->GetServerHandle();
ppItems[ii-1] = pItem;
}
}
(2)AsyncRead(組的異步讀)讀取服務數據
當用異步讀取數據的時候,必須把相應的組的IsSubscribed參數設置為true,以訂閱狀態方式讀取數據;當我們用異步方式
讀取數據就會有一個異步讀取完成的事件:
聲明:
group.AsyncReadComplete +=new
OPCAutomation .DIOPCGroupEvent_AsyncReadCompleteEventHandler (AsyncReadComplete);
實現:
private void AsyncReadComplete(int TransactionID, int NumItems, ref System.Array ClientHandles, ref
System.Array ItemValues, ref System.Array Qualities, ref System.Array TimeStamps, ref System.Array
Errors)
{}
關于“OPC自動化接口編程需要注意哪些問題”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。