In this section:
Command programming notes ............................................... 11-1
Using the TSP command reference ....................................... 11-4
TSP commands ...................................................................... 11-8
Command programming notes
Placeholder text
This manual uses italicized text to represent the parts of remote commands that must be replaced by
user specified values. The following examples show typical uses of italicized text:
Example 1:
beeper.enable = state
Where state can be a value (beeper.ON or beeper.OFF) or an integer (1 or 0) that you specify.
For example, to set this attribute on, you would send one of the following commands:
beeper.enable = beeper.ON
beeper.enable = 1
Example 2:
digio.trigger[N].assert()
Where N is an integer (1 to 14) that you specify. For example, to assert trigger line 7 you would send:
digio.trigger[7].assert()
To assert a trigger line with a variable as the integer, you would send:
triggerline = 7
digio.trigger[triggerline].assert()