Closedown

This commit is contained in:
gac-S_Changer
2016-07-21 12:09:35 +02:00
parent 830049e3f1
commit 6c07ab725b
3 changed files with 2 additions and 13 deletions

View File

@@ -1,5 +1,5 @@
RobotModbus.java=enabled
RobotTcp.java=enabled
Beeper.java=disabled
RobotTCP.py=disabled
RobotTCP.py=enabled
gui.java=disabled

View File

@@ -1,11 +0,0 @@
from ch.psi.pshell.device import *
#from ch.psi.pshell.serial import *
#from ch.psi.pshell.modbus import *
#TcpDevice
class RobotTCP(DeviceBase):
def __init__(self):
DeviceBase.__init__(self)
def do(self):
print "DO"

View File

@@ -15,7 +15,7 @@ public class RobotTcp extends TcpDevice {
public Object run() throws Exception{
Thread.sleep(1000);
return ("Done");
return ("Done X");
}
}