Files
mxsc/plugins/RobotTcp.java
gac-S_Changer ac9fde7889 Closedown
2016-07-25 11:39:00 +02:00

22 lines
388 B
Java

/*
* 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");
}
}