Closedown

This commit is contained in:
gac-S_Changer
2016-07-21 12:02:04 +02:00
parent 1c449b9844
commit 2d5f7e042e
5 changed files with 53 additions and 5 deletions

21
plugins/RobotTcp.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.serial.*;
/**
*/
public class RobotTcp extends TcpDevice {
public RobotTcp(String name, String server) {
super(name, server);
}
public Object run() throws Exception{
Thread.sleep(1000);
return ("Done");
}
}