User manual
Section 13: Instrument Control Library (ICL) Series 3700 System Switch/Multimeter Reference Manual
13-52 3700S-901-01 Rev. C / July 2008
channel.getimage()
Details
To just query for the analog backplane relays associated with a channel, use
channel.getbackplane() (on page 13-45).
Also see
channel.pattern.getimage() (on page 13-62)
Query commands (on page 13-6)
channel functions and attributes (on page 13-24)
Example
Assume Channel 3 on Slot 2 is configured for a 4-wire application and Channel 5 on
Slot 2 is configured for a 2-wire application on a 50-channel card.
To query Channel 5 on Slot 2:
channels = channel.getimage('2005')
print(channels) 2005
To query Channel 3 on Slot 2:
channels = channel.getimage('2003')
print(channels) 2003(2028)
To query for Channels 2003 and 2005 in a single call:
channels = channel.getimage('2003, 2005')
print(channels) 2003(2028);2005
To query Channel 2028:
channels = channels.getimage('2028')
print(channels) nil
-- (error – 2028 is paired for 4-wire operation)
channel.getlabel()
Function
Queries for the label associated with one or more channels.
Usage
label = channel.getlabel(<ch_list>)
ch_list: A string listing the channels to query for the label associated with them.
label: String listing the comma-delimited labels for items in ch_list.