plc相关插件
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
413 B

import com.nlteck.plc.customer.handler.ATLCapacityMachinePlcHandlerImpl;
public class testMain {
public static void main(String[] args) {
try {
ATLCapacityMachinePlcHandlerImpl plcHandler = new ATLCapacityMachinePlcHandlerImpl();
plcHandler.startRun("127.0.0.1", "10.110.59.1");
} catch (Exception e) {
e.printStackTrace();
}
}
}