问题描述:
控制M218 PLC启停的方式有哪些?所属产品线:
Modicon M218解决方法:
1、 通过本体上的STOP/RUN开关
2、 通过本体上的输入可用于运行或停止控制器中的程序,I=1 RUN,I=0 STOP
3、 通过PLC_W.q_wPLCControl与PLC_W.q_wuiOpenPLCControl系统变量,
执行该STOP/RUN需添加重新定位表,执行顺序:
STOP:PLC_W.q_wPLCControl 赋值01,PLC_W.q_wuiOpenPLCControl 赋值6699
RUN: PLC_W.q_wPLCControl 赋值02,PLC_W.q_wuiOpenPLCControl 赋值6699
4、软件控制其启停
是否有帮助?