Visa Com Example In Python - Keysight Technologies InfiniiVision DSOX1204A Programmer's Manual

Table of Contents

Advertisement

36
Programming Examples
End Namespace

VISA COM Example in Python

You can use the Python programming language with the "comtypes" package to
control Keysight oscilloscopes.
The Python language and "comtypes" package can be downloaded from the web
at
To run this example with Python and "comtypes":
1
2
3
#
# Keysight VISA COM Example in Python using "comtypes"
834
m_IoObject = New FormattedIO488Class()
' Open the default VISA COM IO object.
Try
m_IoObject.IO = _
DirectCast(m_ResourceManager.Open(m_strVisaAddress, _
AccessMode.NO_LOCK, 0, ""), IMessage)
Catch e As Exception
Console.WriteLine("An error occurred: {0}", e.Message)
End Try
End Sub
Public Sub SetTimeoutSeconds(ByVal nSeconds As Integer)
m_IoObject.IO.Timeout = nSeconds * 1000
End Sub
Public Sub Close()
Try
m_IoObject.IO.Close()
Catch
End Try
Try
Marshal.ReleaseComObject(m_IoObject)
Catch
End Try
Try
Marshal.ReleaseComObject(m_ResourceManager)
Catch
End Try
End Sub
End Class
http://www.python.org/
Cut-and-paste the code that follows into a file named "example.py".
Edit the program to use the VISA address of your oscilloscope.
If "python.exe" can be found via your PATH environment variable, open a
Command Prompt window; then, change to the folder that contains the
"example.py" file, and enter:
python example.py
and https://pypi.org/project/comtypes/, respectively.
Keysight InfiniiVision DSOX1204A/G Oscilloscopes Programmer's Guide

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the InfiniiVision DSOX1204A and is the answer not in the manual?

Questions and answers

This manual is also suitable for:

Infiniivision dsox1204g

Table of Contents

Save PDF