12 lines
250 B
Python
12 lines
250 B
Python
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, server):
|
|
DeviceBase.__init__(self)
|
|
|
|
def do(self):
|
|
print "DO"
|