Files
mxsc/plugins/RobotModbus.java
gac-S_Changer 830049e3f1 Closedown
2016-07-21 12:02:56 +02:00

22 lines
398 B
Java

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