怎样将wincc里面的两个变量关联起来?如:变量a为1时,变量b为1000;变量a为0时,变量b为0
最佳答案
wincc vbs全局脚本:
dim mytag
mytag=hmiruntime.tags("a").read
if mytag then
hmiruntime.tags("b").write 1000
else
hmiruntime.tags("b").write 0
end if
提问者对于答案的评价:
谢谢
专家置评
已阅,最佳答案正确。
原创文章,作者:more0621,如若转载,请注明出处:https://www.zhaoplc.com/plc157831.html