怎样在wincc 里在一个二进制变量有效时将一个8位变量A,传送到另一个8位变量B?能给出一个实例吗?
最佳答案
dim tag1
set tag1=hmiruntime.tags("tag1") '二进制变量
tag1.read
dim A
set A=hmiruntime.tags("A")
A.read
dim B
set B=hmiruntime.tags("B")
B.read
if tag1.value=1 then
B.write A.value
end if
set tag1=hothing
set A=nothing
Set B=nothing
提问者对于答案的评价:
xiexie
原创文章,作者:more0621,如若转载,请注明出处:https://www.zhaoplc.com/plc265574.html