用宏指令,只是个输入不同的密码跳转到不同的页面,在使用PLC控制里选择切换基本窗口。
macro_command main()
unsigned int a,b=17,c=16
bool off=0
GetData(a, "Local HMI", LW, 10, 1)
if a==130913 then
SetData(b, "Local HMI", LW, 0, 1)
else if a==87654321 then
SetData(c, "Local HMI", LW, 0, 1)
end if
SetData(off, "Local HMI", LB, 0, 1)
end macro_command |