User manual
Section 13: Instrument Control Library (ICL) Series 3700 System Switch/Multimeter Reference Manual
13-128 3700S-901-01 Rev. C / July 2008
dmm.configure.query()
Example
To see the DMM attributes within MyDcv separated by commas:
MyDcvItems = dmm.configure.query("MyDcv")
print(MyDcvItems)
To see the DMM attributes within MyDcv separated by newlines:
MyDcvItems = dmm.configure.query("MyDcv", "\n")
print(MyDcvItems)
To see the factory default settings for DC volts separated by newlines:
FactoryDCV = dmm.configure.query("dcvolts", "\n")
print(FactoryDCV)
To see the DMM attributes for the active function separated by newlines:
ActiveFunc = dmm.configure.query("active", "\n")
print(ActiveFunc)
dmm.configure.recall()
Function
Recalls a user or factory DMM configuration.
Usage
dmm.configure.recall(config)
config: A string representing the name of the DMM configuration to recall.