Connecting to DPO4104 by Tektronix in Python
Instrument Card
The DPO4104 Digital Phosphor Oscilloscope delivers the performance you need to visualize even your most demanding signals. With a 1 GHz Bandwidth and offering a minimum of 5x oversampling on all channels and si (x)/x interpolation standard, you can be confident that even the fastest transient events will be captured and displayed accurately. The standard 10 M record length on all channels enables you to capture long windows of signal activity while maintaining fine timing resolution.
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 DPO4104 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 import the instrumentkit
module and create a connection to the DPO4104 Oscilloscope using the connect
function. The first argument to connect
is the instrument type, which in this case is 'dpo4104'
. The second argument is the connection string, which specifies the communication protocol and address of the oscilloscope. In this example, we use the TCPIP protocol with the IP address '192.168.1.1'
.
After establishing the connection, we can access various properties and methods of the oscilloscope. In this example, we print the identification string of the oscilloscope using the identification
property.
Finally, we close the connection to the oscilloscope using the close
method.
Note: Make sure to replace '192.168.1.1'
with the actual IP address of your oscilloscope.