Keithley 3700 series Reference Manual page 180

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

Advertisement

Section 9: Instrument Control Library (ICL)
channel.open
Example
channel.pattern.catalog
Function
Usage
Remarks
Also see
Example
channel.pattern.delete
Function
Usage
9-36
To open channels 1 to 5 on Slot 1, Channel 3 on Slot 3 and mychans:
channel.open("1001:1005, 3003, mychans")
To open all channels on Slot 3 and 5:
channel.open("slot3, slot5")
To open all channels on all slots:
channel.open("allslots")
Creates an iterator for the user created channel patterns.
for name in channel.pattern.catalog() do
... end
Accessing the catalog for user channel patterns allows the user to print or delete all
patterns in volatile memory. The entries will be enumerated in no particular order. This
will only list user created channel patterns. It does not list channels which are created at
power up.
channel.pattern.setimage
channel.pattern.delete
(on page 9-36)
channel.pattern.getimage
channel.pattern.snapshot
To delete all user created channel patterns:
for name in channel.pattern.catalog() do
channel.pattern.delete(name)
end
To print all user created channel patterns:
for name in channel.pattern.catalog() do
print(name)
end
To print the names and items associated with all user created channel patterns:
for name in channel.pattern.catalog() do
print(name .. " = " ..
channel.pattern.getimage(name))
end
Deletes a channel pattern.
channel.pattern.delete(name)
name: A string representing the name of the channel pattern to delete.
Series 3700 System Switch/Multimeter Reference Manual
(on page 9-38)
(on page 9-37)
(on page 9-40)
Document Number: 3700S-901-01 Rev. A / August 2007

Advertisement

Table of Contents
loading

Table of Contents