想用一个按钮切换内部变量的值
dim tag
set tag = hmiruntime.tags("tag1")
If tag.value =1 then
Tag.write 1
Else
Tag.write 0
End if
但是没有实现想要的功能,哪里出了问题?
最佳答案
dim tag
tag = hmiruntime.tags("tag1").read
If tag then
hmiruntime.tags("tag1").write 0
Else
hmiruntime.tags("tag1").write 1
End if
你说的是取反功能,以上是正确的vbs脚本。
c脚本:
SetTagBit("tag1",!GetTagBit("tag1"));
提问者对于答案的评价:
xiexie
原创文章,作者:more0621,如若转载,请注明出处:https://www.zhaoplc.com/plc180665.html