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.
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 34461A Submodules in Python
Read our guide for turning Python scripts into Flojoy nodes.
PROTOCOLS > SCPI
Explanation:
- Import the necessary modules:
qcodes
and theKeysight34461A
driver fromqcodes.instrument_drivers.Keysight.Keysight_344xxA
. - Create an instance of the
Keysight34461A
driver with a name (‘dmm’) and the instrument’s address (‘TCPIP0::192.168.1.1::INSTR’). - Connect to the instrument using the
connect()
method. - Perform measurements or other operations with the instrument.
- Disconnect from the instrument using the
disconnect()
method.