Skip to content

Connecting to Keysight 34410A by Agilent in Python

Instrument Card

The Keysight Technologies, Inc. 34410A and 34411A 6½-Digit DMMs build on the phenomenal success of the industry-standard Keysight 34401A. These new meters offer improved accuracy, expanded measurement capability, dramatically improved measurement speed and throughput, and modern computer interfaces including LAN and USB.

Keysight 34410A

Device Specification: here

Manufacturer card: AGILENT

AGILENT

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 34410A in Python

PROTOCOLS > SCPI

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

from qcodes.instrument_drivers.Keysight.Keysight_344XXA import Keysight_344XXA
# Create an instance of the Keysight_344XXA driver
multimeter = Keysight_344XXA('multimeter', 'TCPIP0::192.168.1.1::INSTR')
# Connect to the multimeter
multimeter.connect()
# Perform measurements or set parameters using the multimeter object
# Disconnect from the multimeter
multimeter.disconnect()

This script imports the Keysight_344XXA driver from the qcodes.instrument_drivers.Keysight module. It then creates an instance of the driver, specifying a name for the instrument and the VISA resource address of the multimeter. The connect() method is called to establish a connection to the multimeter. You can then perform measurements or set parameters using the multimeter object. Finally, the disconnect() method is called to disconnect from the multimeter.