User manual
Section 13: Instrument Control Library (ICL) Series 3700 System Switch/Multimeter Reference Manual
13-216 3700S-901-01 Rev. C / July 2008
localnode.setup.poweron
Remarks
Setting this attribute to 0 causes the unit to power up to the factory default (reset)
setup. A setting of 1 causes the unit to power up using a user setup that was
previously saved internally.
Example
To set unit to power on with factory default settings:
localnode.setup.poweron = 0
To query power on state:
print(localnode.setup.poweron)
Output (factory default):
0
localnode.setup.recall()
Function
Recalls settings from a saved setup.
Usage
localnode.setup.recall(location)
location: Setup number to recall (0, 1, or "/usb1/<filename>").
0: Reset setup.
1: Internal setup.
<filename>: Use the name of the desired file contained on a USB flash drive.
Remarks
If a number is sent as the parameter:
The number is interpreted as a setup number and the setup is recalled from internal
memory. Setting this attribute to 0 recalls the factory default (reset) setup. Setting this
attribute to 1 recalls the user saved setup from internal memory.
If a string is sent as the parameter:
The string is interpreted as a path and filename and the setup is recalled from the
corresponding file on the USB flash drive. The path may be absolute or relative to the
current working directory. The filename must include the file extension.
Also see
localnode.setup.save() (on page 13-216)
Example
To recall factory default settings:
localnode.setup.recall(0)
To recall the user saved setup from internal memory:
localnode.setup.recall(1)
To recall a user saved setup stored in a file named KEITHLEY_3730 on a USB flash
drive:
localnode.setup.recall("/usb1/KEITHLEY_3730.set")
localnode.setup.save()
Function
Saves the present setup as the user-setup.