Difference between revisions of "Agilent 34405A"

From sigrok
Jump to navigation Jump to search
(add --show to example sigrok-cli invocations, nits)
(example command to get/set range)
 
(One intermediate revision by one other user not shown)
Line 26: Line 26:
Scan for connected devices:
Scan for connected devices:


   $ sigrok-cli -d scpi-dmm --scan
   $ '''sigrok-cli -d scpi-dmm --scan'''


If other supported models or multiple devices of the same type are connected:
If other supported models or multiple devices of the same type are connected:


   $ lsusb
   $ '''lsusb'''
   $ sigrok-cli -d scpi-dmm:conn=0957.0618 --scan
   $ '''sigrok-cli -d scpi-dmm:conn=0957.0618 --scan'''
   $ sigrok-cli -d scpi-dmm:conn=3.15 --scan
   $ '''sigrok-cli -d scpi-dmm:conn=3.15 --scan'''


Check the capabilities of the meter's driver, and current state of settings:
Check the capabilities of the meter's driver, and current state of settings:


   $ sigrok-cli -d scpi-dmm --show
   $ '''sigrok-cli -d scpi-dmm --show'''


Get or set the meter's current function:
Get or set the meter's current function:


   $ sigrok-cli -d scpi-dmm --get measured_quantity
   $ '''sigrok-cli -d scpi-dmm --get measured_quantity'''
   $ sigrok-cli -d scpi-dmm -c measured_quantity=voltage/dc --set
   $ '''sigrok-cli -d scpi-dmm -c measured_quantity=voltage/dc --set'''
 
Get and set the range:
 
  $ '''sigrok-cli -d scpi-dmm --get range'''
  $ '''sigrok-cli -d scpi-dmm -c range=auto --set'''
  $ '''sigrok-cli -d scpi-dmm -c range=5e+3 --set'''
  $ '''sigrok-cli -d scpi-dmm -c range=10e-6 --set'''


Acquire measurement data, in the current mode or in another specified mode:
Acquire measurement data, in the current mode or in another specified mode:


   $ sigrok-cli -d scpi-dmm --continuous
   $ '''sigrok-cli -d scpi-dmm --continuous'''
   $ sigrok-cli -d scpi-dmm --time 10s
   $ '''sigrok-cli -d scpi-dmm --time 10s'''
   $ sigrok-cli -d scpi-dmm --samples 10 -c measured_quantity=current/dc
   $ '''sigrok-cli -d scpi-dmm --samples 10 -c measured_quantity=current/dc'''


== Resources ==
== Resources ==

Latest revision as of 16:39, 22 May 2021

Agilent 34405A
Agilent 34405A.png
Status supported
Source code scpi-dmm
Counts 120000
IEC 61010-1 CAT II (300V) / CAT I (1000VDC)
Connectivity USB (USBTMC)
Measurements voltage, current, resistance, capacitance, frequency, temperature, diode, continuity
Features autorange, true RMS, data hold, relative
Website keysight.com

The Agilent 34405A is a 120000 count CAT II (300V) / CAT I (1000VDC) bench multimeter with USB (USBTMC) connectivity.

See Agilent 34405A/Info for USB profile information.

Photos

Example use

Scan for connected devices:

 $ sigrok-cli -d scpi-dmm --scan

If other supported models or multiple devices of the same type are connected:

 $ lsusb
 $ sigrok-cli -d scpi-dmm:conn=0957.0618 --scan
 $ sigrok-cli -d scpi-dmm:conn=3.15 --scan

Check the capabilities of the meter's driver, and current state of settings:

 $ sigrok-cli -d scpi-dmm --show

Get or set the meter's current function:

 $ sigrok-cli -d scpi-dmm --get measured_quantity
 $ sigrok-cli -d scpi-dmm -c measured_quantity=voltage/dc --set

Get and set the range:

 $ sigrok-cli -d scpi-dmm --get range
 $ sigrok-cli -d scpi-dmm -c range=auto --set
 $ sigrok-cli -d scpi-dmm -c range=5e+3 --set
 $ sigrok-cli -d scpi-dmm -c range=10e-6 --set

Acquire measurement data, in the current mode or in another specified mode:

 $ sigrok-cli -d scpi-dmm --continuous
 $ sigrok-cli -d scpi-dmm --time 10s
 $ sigrok-cli -d scpi-dmm --samples 10 -c measured_quantity=current/dc

Resources