Difference between revisions of "Agilent 34405A"

From sigrok
Jump to navigation Jump to search
(example command to get/set range)
 
(4 intermediate revisions by 2 users not shown)
Line 2: Line 2:
| image          = [[File:Agilent 34405A.png|180px]]
| image          = [[File:Agilent 34405A.png|180px]]
| name            = Agilent 34405A
| name            = Agilent 34405A
| status          = planned
| status          = supported
| source_code_dir =  
| source_code_dir = scpi-dmm
| counts          = 120000
| counts          = 120000
| categories      = CAT II (300V) / CAT I (1000VDC)
| categories      = CAT II (300V) / CAT I (1000VDC)
Line 18: Line 18:
== Photos ==
== Photos ==
<gallery>
<gallery>
File:Agilent 34405A.png
File:Agilent 34405A back.png
File:Agilent 34405A back.png
</gallery>
</gallery>
== 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 ==
== Resources ==
Line 28: Line 63:
[[Category:Device]]
[[Category:Device]]
[[Category:Multimeter]]
[[Category:Multimeter]]
[[Category:Planned]]
[[Category:Supported]]

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