aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--qolab/hardware/daq/__init__.py15
1 files changed, 8 insertions, 7 deletions
diff --git a/qolab/hardware/daq/__init__.py b/qolab/hardware/daq/__init__.py
index 0d3d3a6..828dfb8 100644
--- a/qolab/hardware/daq/__init__.py
+++ b/qolab/hardware/daq/__init__.py
@@ -1,14 +1,15 @@
from qolab.hardware.basic import BasicInstrument
+
class DAQ(BasicInstrument):
# Minimal set of methods to be implemented by a RFGenerator
def __init__(self, *args, **kwds):
BasicInstrument.__init__(self, *args, **kwds)
- self.config['Device type']='DAQ'
- self.config['Device model'] = 'Generic DAQ Without Hardware interface'
- self.config['FnamePrefix'] = 'daq'
- self.deviceProperties.update({'AnalogInputsNum', 'AnalogOutputsNum'})
-
+ self.config["Device type"] = "DAQ"
+ self.config["Device model"] = "Generic DAQ Without Hardware interface"
+ self.config["FnamePrefix"] = "daq"
+ self.deviceProperties.update({"AnalogInputsNum", "AnalogOutputsNum"})
+
# this is device dependent
- self.AnalogInputsNum=0
- self.AnalogOutputsNum=0
+ self.AnalogInputsNum = 0
+ self.AnalogOutputsNum = 0