aboutsummaryrefslogtreecommitdiff
path: root/examples/scope_sds1104x.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/scope_sds1104x.py')
-rw-r--r--examples/scope_sds1104x.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/examples/scope_sds1104x.py b/examples/scope_sds1104x.py
new file mode 100644
index 0000000..c5c890f
--- /dev/null
+++ b/examples/scope_sds1104x.py
@@ -0,0 +1,19 @@
+import pyvisa
+from qolab.hardware.scope import SDS1104X
+
+if __name__ == '__main__':
+ print("Testing SDS1104X")
+ rm = pyvisa.ResourceManager()
+ print(rm.list_resources())
+ instr=rm.open_resource('TCPIP::192.168.0.61::INSTR')
+ scope = SDS1104X(instr)
+ print(f'ID: {scope.idn}')
+ print(f'Ch1 mean: {scope.mean(1)}')
+ print(f'Ch1 available points: {scope.getAvailableNumberOfPoints(1)}')
+ print(f'Sample Rate: {scope.getSampleRate()}')
+ print(f'Time per Div: {scope.getTimePerDiv()}')
+ print(f'Ch1 Volts per Div: {scope.getChanVoltsPerDiv(1)}')
+ print(f'Ch1 Voltage Offset: {scope.getChanOffset(1)}')
+ ch1 = scope.getTrace(1)
+ ch1.plot()
+