这是一个做风扇转动的脚本,请问当item.endangle1为360时,item.startangle1是多少?谢谢!
Function StartAngle1_Trigger(Byval Item)
If HMIRuntime.tags("XMST3801.M1_RUN_FB")=1 Then
item.startangle1=item.startangle1+45
item.endangle1=item.endangle1+45
item.startangle2=item.startangle2+45
item.endangle2=item.endangle2+45
If item.endangle1=360 Then
item.endangle1=0
Elseif item.endangle2=360 Then
item.endangle2=0
End If
End If
End Function
最佳答案
1. 最后要写4段if...then...end if,而不是elseif
2. 稳妥起见,建议写>=360
提问者对于答案的评价:
谢谢!
原创文章,作者:ximenziask,如若转载,请注明出处:https://www.zhaoplc.com/plc355793.html