diff options
author | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2021-12-03 09:59:41 -0500 |
---|---|---|
committer | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2021-12-03 09:59:41 -0500 |
commit | 65a220c30593c86cc2ea4291b794196146880e9d (patch) | |
tree | c4c9a76f5fe9e75ed8e9014e683dbb45abada473 /qolab/hardware/scope/sds1104x.py | |
parent | e9a6a48fead03d3c59c44fa2295b2ffa82403593 (diff) | |
download | qolab-65a220c30593c86cc2ea4291b794196146880e9d.tar.gz qolab-65a220c30593c86cc2ea4291b794196146880e9d.zip |
added grabing and ploting all traces capabilities
Diffstat (limited to 'qolab/hardware/scope/sds1104x.py')
-rw-r--r-- | qolab/hardware/scope/sds1104x.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qolab/hardware/scope/sds1104x.py b/qolab/hardware/scope/sds1104x.py index 2a78857..f77883d 100644 --- a/qolab/hardware/scope/sds1104x.py +++ b/qolab/hardware/scope/sds1104x.py @@ -165,6 +165,7 @@ if __name__ == '__main__': print(f'Ch1 Volts per Div: {scope.getChanVoltsPerDiv(1)}') print(f'Ch1 Voltage Offset: {scope.getChanOffset(1)}') ch1 = scope.getTrace(1) + traces = scope.getAllTraces() |