試著寫了一個宏,完全不行。
我想把一個字的值賦給一個位元件的數(shù)組,還要把一個字的某個位的狀態(tài)讀出賦給一個PLC內(nèi)的位元件要怎么寫呢。
macro_command main()
short a, b
bool wei[16]
short zhi
GetData(zhi, "Local HMI", LW, 0, 1)
for b=0 to 16
GETBIT(zhi, wei[b], b)
next b
for a=0 to 16
SetData(wei[a], "Local HMI", LB, a, 1)
next a
end macro_command
上面嘗試把LW0的16位分別賦給wei[16]這個數(shù)組,再把這個數(shù)組的值賦給LB0開始的16個位元件,但運行看不到效果。