This commit is contained in:
gac-S_Changer
2018-12-03 12:17:40 +01:00
commit bdf5049f96
204 changed files with 18029 additions and 0 deletions

21
plugins/RobotModbus.java Normal file
View File

@@ -0,0 +1,21 @@
/*
* Copyright (c) 2014 Paul Scherrer Institute. All rights reserved.
*/
import ch.psi.pshell.device.*;
import ch.psi.pshell.modbus.*;
/**
*/
public class RobotModbus extends ModbusTCP {
public RobotModbus(String name, String server) {
super(name, server);
}
public Object run() throws Exception{
Thread.sleep(1000);
return ("Done run");
}
}