wincc变量传送到另一个变量

怎样在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

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2019年6月11日
下一篇 2019年6月11日

相关推荐