wincc内部二进制变量 如何实现自动0-1 跳变,变化的频率可以调节,1s,2s等。
最佳答案
全局脚本出发周期为1s,wincc定义两个内部整数变量runtime,runtime_sp,
vbs脚本:
dim tag(3)
tag(0)=hmiruntime.tags("tag_bool").read//跳边变量值读取
tag(1)=hmiruntime.tags("runtime").read//计时
tag(0)=hmiruntime.tags("runtime_sp").read//计时设定值
if tag(1)>=tag(2) then
if tag(0)=1 then
tag(0)=0
else
tag(0)=1
end if
end if
tag(1)=tag(1)+1
hmiruntime.tags("runtime").write tag(1)
提问者对于答案的评价:
谢谢,有C脚本的程序吗?
原创文章,作者:more0621,如若转载,请注明出处:https://www.zhaoplc.com/plc191380.html