Difference between revisions of "Agilent 34405A"
Jump to navigation
Jump to search
(Created page with "{{Infobox multimeter | image = 180px | name = Agilent 34405A | status = planned | source_code_dir = | counts ...") |
(example command to get/set range) |
||
(7 intermediate revisions by 3 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 = | | 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 12: | Line 12: | ||
}} | }} | ||
The '''Agilent 34405A''' is a 120000 count CAT II (300V) / CAT I (1000VDC) bench multimeter with USB ([[USBTMC]])connectivity. | 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 == | == 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 == | ||
* [http://literature.cdn.keysight.com/litweb/pdf/5989-4906EN.pdf | * [http://literature.cdn.keysight.com/litweb/pdf/5989-4906EN.pdf Datasheet] | ||
* [http://cp.literature.agilent.com/litweb/pdf/34405-91000.pdf User’s and Service Guide] | * [http://cp.literature.agilent.com/litweb/pdf/34405-91000.pdf User’s and Service Guide] | ||
[[Category:Device]] | [[Category:Device]] | ||
[[Category:Multimeter]] | [[Category:Multimeter]] | ||
[[Category: | [[Category:Supported]] |
Latest revision as of 15:39, 22 May 2021
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