Hi, I'm new to this ..
I have an Xp sp3 machine with 34405A connected ( through USB)
I've download and installed the following .. ( not sure if I needed them all )
IOLibSuite_16_3_16603.exe
IviSharedComponents_2.2.1.exe
VisaSharedComponents32_1.4.msi
driver_ivicom_ivic_Agilent34405_1_0_4_0.msi
I'm using the VB.net "example3" in the driver_ivicom_ivic_Agilent34405_1_0_4_0.msi package ...
I used the IOLibSuite to get the device address and inserted in the code ( shown below)
driver34405.Initialize("USB0::0x0957::0x0618::tw47180058::0::INSTR", False, True, standardInitOptions)
it runs with no errors and give the following output screen - but in actual fact the DVM dosn't appear to do a self test - it's as if it is actually doing a simulation test ????
-----------------------------
----------Example 3----------
-----------------------------
Doing Self Test Now...
Self-test status: Selftest passed
Instrument Description: IVI driver for the Agilent 34405 digital multimeter.
Instrument Vendor: Agilent Technologies
Instrument Firmware Revision: Sim1.0.4.0
Instrument serial Number: 12345
The SCPI Version of Instrument: 1994.0
Instrument's calibration string: TEST
The DCV reading is: 0 Volt
Done - Press Enter to Exit
Likewise for "example1" the software appears to run ok but it reports zero DC Volts even though I have 9 volt DC source connected ... again it's as if it is a simulated test ..
am I doing something wrong ?
thanks
I have an Xp sp3 machine with 34405A connected ( through USB)
I've download and installed the following .. ( not sure if I needed them all )
IOLibSuite_16_3_16603.exe
IviSharedComponents_2.2.1.exe
VisaSharedComponents32_1.4.msi
driver_ivicom_ivic_Agilent34405_1_0_4_0.msi
I'm using the VB.net "example3" in the driver_ivicom_ivic_Agilent34405_1_0_4_0.msi package ...
I used the IOLibSuite to get the device address and inserted in the code ( shown below)
driver34405.Initialize("USB0::0x0957::0x0618::tw47180058::0::INSTR", False, True, standardInitOptions)
it runs with no errors and give the following output screen - but in actual fact the DVM dosn't appear to do a self test - it's as if it is actually doing a simulation test ????
-----------------------------
----------Example 3----------
-----------------------------
Doing Self Test Now...
Self-test status: Selftest passed
Instrument Description: IVI driver for the Agilent 34405 digital multimeter.
Instrument Vendor: Agilent Technologies
Instrument Firmware Revision: Sim1.0.4.0
Instrument serial Number: 12345
The SCPI Version of Instrument: 1994.0
Instrument's calibration string: TEST
The DCV reading is: 0 Volt
Done - Press Enter to Exit
Likewise for "example1" the software appears to run ok but it reports zero DC Volts even though I have 9 volt DC source connected ... again it's as if it is a simulated test ..
am I doing something wrong ?
thanks
I needed to change the initialization option "simulate" from true to false
' Setup IVI-defined initialization options. Resource descriptor is ignored if Simulate=true.
standardInitOptions = "QueryInstrStatus=false, Simulate=False"
thanks anyway ......