Startup
This commit is contained in:
15
script/devices/StdDaq.py
Normal file
15
script/devices/StdDaq.py
Normal file
@@ -0,0 +1,15 @@
|
||||
class StdDaq(DeviceBase):
|
||||
def __init__(self, name):
|
||||
DeviceBase.__init__(self, name)
|
||||
|
||||
def doInitialize(self):
|
||||
DeviceBase.doInitialize(self)
|
||||
|
||||
def start():
|
||||
print "start"
|
||||
|
||||
def stop():
|
||||
print "stop"
|
||||
|
||||
def doClose(self):
|
||||
DeviceBase.doClose(self)
|
||||
Reference in New Issue
Block a user