Connecting to MDA8000HD by Teledyne in Python
Instrument Card
The Motor Drive Analyzer is built on an 8 channel, 12-bit resolution oscilloscope platform. It acquires any signal and performs three-phase electrical and mechanical power calculations. It provides complete power section and embedded control test coverage.
Device Specification: here
Manufacturer card: TELEDYNE
Teledyne LeCroy is an American manufacturer of oscilloscopes, protocol analyzers and other test equipment. LeCroy is now a subsidiary of Teledyne Technologies.
- Headquarters: USA
- Yearly Revenue (millions, USD): 5458.6
- Vendor Website: here
Demo: Measure signal width and phase with a Tektronix oscilloscope
Connect to the MDA8000HD in Python
Read our guide for turning Python scripts into Flojoy nodes.
PROTOCOLS > SCPI
To connect to a MDA8000HD Oscilloscope using Instrumentkit, you can use the following code:
This code imports the instrumentkit
library and uses the open_visa
function from the ik.teledyne.MAUI
module to connect to the oscilloscope. The IP address â192.168.0.10â is used as an example, and you should replace it with the actual IP address of your oscilloscope.
Once connected, you can perform operations on the oscilloscope, such as starting the trigger in automatic mode and printing the trigger state. Finally, you can close the connection to the oscilloscope using the close
method.
Note: This code assumes that you have already installed the necessary dependencies and have the correct VISA backend configured.