Skip to content

Connecting to Keysight 34461A Submodules by Keysight in Python

Instrument Card

The 34411A offers Temperature and Capacitance capabilities, in addition to those measurements you have come to expect, such as DCV, ACV, DCI, ACI, 2-wire and 4-wire Resistance, Frequency, Period, Continuity and Diode Test.

Keysight 34461A Submodules

Device Specification: here

Manufacturer card: KEYSIGHT

KEYSIGHT

Keysight Technologies, or Keysight, is an American company that manufactures electronics test and measurement equipment and software

  • Headquarters: USA
  • Yearly Revenue (millions, USD): 5420
  • Vendor Website: here

Demo: Record voltage over time with an Agilent 34401A multimeter

Connect to the Keysight 34461A Submodules in Python

PROTOCOLS > SCPI

import qcodes as qc
from qcodes.instrument_drivers.Keysight.Keysight_344xxA import Keysight34461A
# Create an instance of the Keysight34461A driver
dmm = Keysight34461A('dmm', 'TCPIP0::192.168.1.1::INSTR')
# Connect to the instrument
dmm.connect()
# Perform measurements or other operations with the instrument
# Disconnect from the instrument
dmm.disconnect()

Explanation:

  1. Import the necessary modules: qcodes and the Keysight34461A driver from qcodes.instrument_drivers.Keysight.Keysight_344xxA.
  2. Create an instance of the Keysight34461A driver with a name (‘dmm’) and the instrument’s address (‘TCPIP0::192.168.1.1::INSTR’).
  3. Connect to the instrument using the connect() method.
  4. Perform measurements or other operations with the instrument.
  5. Disconnect from the instrument using the disconnect() method.