From 6c07ab725b9d12edd805e173bafcfbff52170d7a Mon Sep 17 00:00:00 2001 From: gac-S_Changer Date: Thu, 21 Jul 2016 12:09:35 +0200 Subject: [PATCH] Closedown --- config/plugins.properties | 2 +- plugins/RobotTCP.py | 11 ----------- plugins/RobotTcp.java | 2 +- 3 files changed, 2 insertions(+), 13 deletions(-) delete mode 100644 plugins/RobotTCP.py diff --git a/config/plugins.properties b/config/plugins.properties index f2dbedb..faebf0d 100644 --- a/config/plugins.properties +++ b/config/plugins.properties @@ -1,5 +1,5 @@ RobotModbus.java=enabled RobotTcp.java=enabled Beeper.java=disabled -RobotTCP.py=disabled +RobotTCP.py=enabled gui.java=disabled diff --git a/plugins/RobotTCP.py b/plugins/RobotTCP.py deleted file mode 100644 index 8ee7294..0000000 --- a/plugins/RobotTCP.py +++ /dev/null @@ -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" diff --git a/plugins/RobotTcp.java b/plugins/RobotTcp.java index d3f4c33..cf04054 100644 --- a/plugins/RobotTcp.java +++ b/plugins/RobotTcp.java @@ -15,7 +15,7 @@ public class RobotTcp extends TcpDevice { public Object run() throws Exception{ Thread.sleep(1000); - return ("Done"); + return ("Done X"); } }