想用状态显示控件来实现风机动态运行,用了4张图片,当有风机已启动信号输入时,风机运转这个变量就从0开始+1 大于3后就清零,这样来实现风机画面动态运行。 由于要风机输入的布尔量信号来控制风机运转的数值变化 所以显示的动态链接是不是只能用C和VB了呢? 如果要C或者VB改怎么编写脚本呢?
图片说明:
最佳答案
wincc全局脚本:
vbs:
dim motor_status,myint
motor_status=hmiruntime.tags("Srun").read
myint=hmiruntime.tags("Srun_int").read
if motor_status =1 then
myint=myint+1
end_if
if myint>=3 then
myint=0
end_if
hmiruntime.tags("Srun_int").write myint
以上脚本放到2s周期的脚本中执行(画面刷新周期默认都是2s的)
Srun:bool,风机运行状态
Srun_int:int,图片切换用的整数变量。
提问者对于答案的评价:
原创文章,作者:ximenziask,如若转载,请注明出处:https://www.zhaoplc.com/plc356977.html