Keithley 3700 series Reference Manual page 223

System switch/multimeter
Hide thumbs Also See for 3700 series:
Table of Contents

Advertisement

Series 3700 System Switch/Multimeter Reference Manual
dmm.close
Example
dmm.configure.catalog
Function
Usage
Remarks
Also see
Example
Document Number: 3700S-901-01 Rev. A / August 2007
To close Channel 3 on Slot 3 and prepare the DMM for measuring temperature at
"mytemperature" settings:
dmm.setconfig("3003", "mytemperature")
To close 3003 as well
dmm.close("3003")
To close a channel pattern called mychans and prepare DMM for measuring "dcvolts" at
factory default settings:
dmm.setconfig("mychans", "dcvolts")
To close needed analog backplane relay 1 channels
dmm.close("mychans")
Creates an iterator for the user-created DMM configurations.
for name in dmm.configure.catalog() do ... end
Accessing the catalog for user DMM configurations allows the user to print or delete all
configurations in volatile memory. The entries will be enumerated in no particular order.
This will only list user-created DMM configurations; it does not list the factory default
configurations.
dmm.configure.delete
(on page 9-79)
dmm.configure.query
(on page 9-80)
dmm.configure.recall
(on page 9-81)
dmm.configure.set
(on page 9-82)
To delete all user-created DMM configurations from volatile memory:
for name in dmm.configure.catalog() do
dmm.configure.delete(name)
end
To print all user-created DMM configurations in volatile memory:
for name in dmm.configure.catalog() do
print(name)
end
Section 9: Instrument Control Library (ICL)
9-79

Advertisement

Table of Contents
loading

Table of Contents