Connecting to Keysight 34470A 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.
Device Specification: here
Manufacturer card: 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 34470A Submodules in Python
Read our guide for turning Python scripts into Flojoy nodes.
PROTOCOLS > SCPI
To connect to a Keysight 34470A Multimeter using Qcodes, you can use the following Python script:
This script imports the necessary modules and creates an instance of the Keysight_34470A
driver. The Keysight_34470A
class is a subclass of _Keysight_344xxA
, which is a submodule of the Keysight
module in the Qcodes library.
The Keysight_34470A
class is an alias for Keysight34470A
and is provided for backwards compatibility.
To connect to the multimeter, you call the connect()
method on the multimeter
instance. You can then perform measurements or other operations with the multimeter.
Finally, you can disconnect from the multimeter by calling the disconnect()
method on the multimeter
instance.