Skip to content

Connecting to Keysight 34460A 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 34460A 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 34460A Submodules in Python

PROTOCOLS > SCPI

To connect to a Keysight 34460A Submodules Multimeter using Qcodes, you can use the following Python script:

from qcodes.instrument_drivers.Keysight.Keysight_344xxA import Keysight_34411A
# Create an instance of the Keysight_34411A driver
multimeter = Keysight_34411A(name='multimeter', address='your_device_address')
# Connect to the multimeter
multimeter.connect()
# Now you can use the multimeter to perform measurements
# For example, to measure the voltage:
voltage = multimeter.volt()
# Print the measured voltage
print(f"Measured voltage: {voltage} V")
# Disconnect from the multimeter
multimeter.disconnect()

Make sure to replace 'your_device_address' with the actual address of your Keysight 34460A Submodules Multimeter.