I am runing this code to check Digital multimeter model and then I'll do some mesaurement.
import ivi
ivi.set_prefer_pyvisa(True)
device=ivi.agilent.agilent34410A()
device._initialize("USB0::0x0AAD::0x0135::041681056::0::INSTR",False,True)
model=device._get_identity_instrument_model()
print(model)
But I got this error.
pyvisa.errors.VisaIOError: VI_ERROR_TMO (-1073807339): Timeout expired before operation completed.
I verified instrument adress with Keysight command expert and it's the right one.
Anyone had an idea what can be the cause of this error?