High Voltage SourceMeter Instrument Reference Manual Section 9: TSP-Link and TSP-
2470-901-01 Rev. A / May 2019 9-5
From the front panel:
1. Power on all instruments connected to the TSP-Link network.
2. Press the MENU key.
3. Under System, select Communication. The SYSTEM COMMUNICATIONS window opens.
4. Select the TSP-Link tab.
5. Select Initialize.
Using TSP commands:
To initialize the TSP-Link system, send the command:
tsplink.initialize()
To check the state of the TSP-Link system, send the command:
print(tsplink.state)
If initialization was successful, online is returned. If initialization was not successful, offline is
returned.
Sending commands to TSP-Link nodes
You can send remote commands to any instrument on the TSP-Link system by adding node[N]. to
the beginning of the remote command, where N is the node number.
For example, to sound the beeper on node 10, you would send the command:
node[10].beeper.beep(2, 2400)
To send a command to the master, you can interact with it as if it were a single instrument.
Using the reset() command
Most TSP-Link
®
system operations target a single node in the system, but the reset() command
af
fects the system as a whole by resetting all nodes to their default settings:
-- Reset all nodes in a TSP-Link system to their default state.
reset()
Using the reset() command in a TSP-Link network differs from using the
tsplink.initialize()
command. The tsplink.initialize() command reinitializes t
he
T
SP-Link network and will turn off the output of any TSP-linked instrument. It may change the state
of individual nodes in the system.