aboutsummaryrefslogtreecommitdiff
path: root/qolab/hardware/scope/__init__.py
diff options
context:
space:
mode:
authorEugeniy E. Mikhailov <evgmik@gmail.com>2022-01-03 16:13:00 -0500
committerEugeniy E. Mikhailov <evgmik@gmail.com>2022-01-03 16:13:00 -0500
commita1029d1af454956f54150b12e2a80059bbc1951e (patch)
tree841b53932d5649efd8c3ae2acf7d317a13e2de06 /qolab/hardware/scope/__init__.py
parent794b5c6474d0291da8221a29422890e4228e6f4e (diff)
downloadqolab-a1029d1af454956f54150b12e2a80059bbc1951e.tar.gz
qolab-a1029d1af454956f54150b12e2a80059bbc1951e.zip
scope config tracks TriggerMode, Roll, and Run statuses
Diffstat (limited to 'qolab/hardware/scope/__init__.py')
-rw-r--r--qolab/hardware/scope/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qolab/hardware/scope/__init__.py b/qolab/hardware/scope/__init__.py
index e2f3e61..f71cd46 100644
--- a/qolab/hardware/scope/__init__.py
+++ b/qolab/hardware/scope/__init__.py
@@ -19,7 +19,7 @@ class Scope(BasicInstrument):
# deviceProperties must have 'get' and preferably 'set' methods available,
# i.e. 'SampleRate' needs getSampleRate() and love to have setSampleRate(value)
# they will be used to obtain config and set device according to it
- self.deviceProperties = ['SampleRate', 'TimePerDiv', 'TrigDelay', ];
+ self.deviceProperties = ['SampleRate', 'TimePerDiv', 'TrigDelay', 'TriggerMode', 'Roll', 'Run' ];
# same is applied to channelProperties but we need setter/getter with channel number
# i.e. VoltsPerDiv -> getChanVoltsPerDiv(chNum) and setSampleRate(chNum, value)
self.channelProperties = ['VoltsPerDiv', 'VoltageOffset', ]