Connecting to DPO7000 by Tektronix in Python
Instrument Card
The MSO/DPO70000DX is one of the most advanced oscilloscopes in its classโenabling todayโs engineer to see signals better with minimal noise, debug signal anomalies faster and utilize measurement and analysis tools for automated compliance testing and other verifications
Device Specification: here
Manufacturer card: TEKTRONIX
Tektronix, Inc., historically widely known asย Tek, is an American company best known for manufacturing test and measurement devices such asย oscilloscopes,ย logic analyzers, and video and mobile test protocol equipment.
- Headquarters: USA
- Yearly Revenue (millions, USD): 5800
- Vendor Website: here
Demo: Measure signal width and phase with a Tektronix oscilloscope
Connect to the DPO7000 in Python
Read our guide for turning Python scripts into Flojoy nodes.
OSCILLOSCOPES > TEKTRONIX
๐ ADVANCED MEASUREMENTS MDO3XXX
Extract waveform measurements from an MDO3xxx oscilloscope.
๐ CONNECTION MDO3XXX
Connect Flojoy to a MDO3XXX oscilloscope.
๐ EXTRACT TRACE MDO3XXX
Extract a trace from an MDO3xxx oscilloscope.
๐ MEASUREMENTS MDO3XXX
Extract waveform measurements from an MDO3XXX oscilloscope.
๐ MEASURE PHASE MDO3XXX
Measure the phase between two channels on an MDO3XXX oscilloscope.
๐ TERMINATION MDO3XXX
The TERMINATION_MDO3XXX block sets the termination ohms (or queries it).
๐ TRIGGER CHANNEL MDO3XXX
Set the triggering channel of a MDO3XXX oscilloscope (or query it).
๐ TRIGGER LEVEL MDO3XXX
Set the trigger voltage of a MDO3XXX oscilloscope (or queries it).
๐ TRIGGER SETTINGS MDO3XXX
Sets advanced trigger settings for an MDO3XXX oscilloscope.
๐ AFG MSO2X
Set the MSO2XX Function Generator settings.
๐ CHANNEL DISPLAY MSO2X
Set the MSO2XX channels on (1) or off (0).
๐ CONNECT MSO2X
Open a VISA connection to an MSO2X Tektronix oscilloscope.
๐ DECODE I2C MSO2X
Creates a bus decode for decoding I2C.
๐ DIGITAL CHANNELS MSO2X
Set the digital MSO2XX channels on (1) or off (0).
๐ EDGE TRIGGER MSO2X
Set the MSO2XX edge trigger settings.
๐ HORIZONTAL POSITION MSO2X
Set the MSO2X oscilloscope horizontal position or delay.
๐ HORIZONTAL SCALE MSO2X
Set the MSO2X oscilloscope viewport.
๐ I2C TRIGGER MSO2X
Set the MSO2XX I2C trigger settings.
๐ MEASUREMENT MSO2X
Measure one of the waveforms for the MSO2X.
๐ PROBE ATTENUATION MSO2X
Set the MSO2XX probe attenuation for specific channel.
๐ QUERY CURVE MSO2X
Returns the curve query on a MSO2X oscilloscope, in voltage vs time.
๐ SCREENSHOT MSO2X
Save a screenshot from a Tektronix MSO oscilloscope.
๐ SETUP FILE MSO2X
Saves or recalls a instrument setup file (.set).
๐ SINGLE TRIGGER MSO2X
Sets the scope into single trigger mode.
๐ VERTICAL POSITION MSO2X
Set the MSO2XX oscilloscope vertical offset for the specified channel.
๐ VERTICAL SCALE MSO2X
Set the MSO2XX oscilloscope viewport.
PROTOCOLS > SCPI
In this script, we first import the Scope
class from the instrumentkit
module. Then, we create an instance of the Scope
class by passing the instrumentโs address as a string to the constructor.
Next, we set up the oscilloscope by calling various methods on the scope
object. For example, we use the set_timebase
method to set the timebase to 1us/div and the set_channel_scale
method to set the scale of channel 1 to 0.1V/div and channel 2 to 0.2V/div.
After setting up the oscilloscope, we can acquire waveform data using the acquire_waveform
method. In this example, we acquire the waveform from channel 1 by passing 1
as an argument to the method.
Finally, we print the acquired waveform data and disconnect from the oscilloscope using the disconnect
method.
Note: Replace "TCPIP::192.168.1.1::INSTR"
with the actual IP address or VISA resource string of your DPO7000 Oscilloscope.