我定義的WinCC內部二進制變量ILR.ILR25 和ILR.ILR26,外部無符號16位變量PbSlvCommSts1和外部布爾變量DI007EMO。其中外部變量分別關聯(lián)到PLC內的一個int和bool數,測試時,ILR.ILR25相關聯(lián)的WinCC IO域反應是正常的,但ILR.ILR26相關聯(lián)的IO域一直是“0”,不會變化。
這段代碼是很簡單的,麻煩大神指教一下,謝謝!
Dim ILRILR25
Set ILRILR25 = HMIRuntime.Tags("ILR.ILR25")
Dim PbSlvCommSts1
Set PbSlvCommSts1 = HMIRuntime.Tags("PbSlvCommSts1")
PbSlvCommSts1.Read
ILRILR25.value=PbSlvCommSts1.Value And &h0002
ILRILR25.Write
Dim ILRILR26
Set ILRILR26 = HMIRuntime.Tags("ILR.ILR26")
Dim DI007EMO
Set DI007EMO = HMIRuntime.Tags("DI007EMO")
DI007EMO.Read
ILRILR26.Value=DI007EMO.Value
ILRILR26.Write