In addition to this README, I have also written a blog post about this application.
rigol-ds1000z --help
rigol-ds1000z --visa rsrc --display path/to/file.png
rigol-ds1000z --visa rsrc --waveform src path/to/file.csv
Unless a VISA resource is specified with the --visa
argument, the CLI will search for a Rigol DS1000Z series oscilloscope and connect to the first one it finds.
The CLI can capture and save to file an image of the display (--display
) or the waveform data of the specified source channel (--waveform
).
See the provided examples and read the documentation.
from rigol_ds1000z import Rigol_DS1000Z
from rigol_ds1000z import process_display, process_waveform
from time import sleep
with Rigol_DS1000Z() as oscope:
# reset to defaults and print the IEEE 488.2 instrument identifier
ieee = oscope.ieee(rst=True)
print(ieee.idn)
# configure channels 1 and 2, the timebase, and the trigger
channel1 = oscope.channel(1, probe=1, coupling="AC", offset=3.0, scale=2)
channel2 = oscope.channel(2, probe=1, scale=1, display=True)
timebase = oscope.timebase(main_scale=200e-6)
trigger = oscope.trigger(mode="EDGE", source=2, coupling="DC", level=1.5)
# send an SCPI commands to setup the math channel
oscope.write(":MATH:DISPlay ON")
oscope.write(":MATH:OPER SUBT")
oscope.write(":MATH:SOUR2 CHAN2")
oscope.write(":MATH:SCAL 5")
oscope.write(":MATH:OFFS -10")
# wait three seconds then single trigger
sleep(3)
oscope.single()
# capture the display image
display = oscope.display()
process_display(display, show=True)
# plot the channel 1 waveform data
waveform = oscope.waveform(source=1)
process_waveform(waveform, show=True)
pip install rigol-ds1000z
Available on PyPI. This package uses PyVISA to communicate with the oscilloscope. The user will have to install some VISA backend library for their operating system such as National Instrument's VISA library or libusb (this package supports both the "@ivi" and "@py" PyVISA backends transparently).
This software has been tested on Windows (Command Prompt and PowerShell), although it should be possible to run in other shells and/or operating systems. For best visual performance, a default of white text on a black background is recommended.
The software does insert some sleep time on specific commands (such as reset and autoscale) to ensure fluid operation of the oscilloscope. The user may find that they require additional downtime after certain command sequences.
Rigol DS1000Z programming manual.
Command Category | Coverage |
---|---|
AUToscale, etc. | YES |
ACQuire | no |
CALibrate | no |
CHANnel | YES |
CURSor | no |
DECoder | no |
DISPlay | YES |
ETABle | no |
FUNCtion | no |
IEEE 488.2 | YES |
LA | no |
LAN | no |
MATH | no |
MASK | no |
MEASure | no |
REFerence | no |
STORage | no |
SYSTem | no |
TIMebase | YES |
TRIGger | PARTIAL |
WAVeform | YES |
Installing the development environment requires running the following command sequence.
poetry install
poetry run pre-commit install
In order for all tests to pass channel 2 must be connected to the calibration square wave.