根据一个变量 由1 变为 0 时 显示一个倒计时为 100 分钟,而变量由0变化到1时,触发一个倒计时为80分钟
最佳答案
If HMIRuntime.Tags("tag1").read =1 Then
If HMIRuntime.Tags("counter80").read <=0 Then
HMIRuntime.Tags("counter80").Write 0
''执行倒计时80动作
Else If HMIRuntime.Tags("counter80").read >0 Then
HMIRuntime.Tags("counter80").Write HMIRuntime.Tags("counter80").read -1
End If
End If
HMIRuntime.Tags("counter100").Write 100
End If
If HMIRuntime.Tags("tag1").read =0 Then
If HMIRuntime.Tags("counter100").read <=0 Then
HMIRuntime.Tags("counter100").Write 0
''执行倒计时100动作
Else If HMIRuntime.Tags("counter100").read >0 Then
HMIRuntime.Tags("counter100").Write HMIRuntime.Tags("counter100").read -1
End If
End If
HMIRuntime.Tags("counter80").Write 80
End If
全局脚本,1分钟周期运行;或者1秒(把上述分钟换算成秒)
提问者对于答案的评价:
感谢大神,很好用~多问一句,count80 和count100 是2个内部变量,有没有方法能用一个变量?
原创文章,作者:ximenziask,如若转载,请注明出处:https://www.zhaoplc.com/plc357526.html