Series 3700A System Switch/Multimeter Reference Manual Section 11: TSP command reference
3700AS-901-01 Rev. D/June 2018 11-115
delay()
This function delays the execution of the commands that follow it.
The number of seconds to delay (0 to 100 ks)
Details
The instrument delays execution of the commands for at least the specified number of seconds and
fractional seconds. However, the processing time may cause the instrument to delay 5 μs to 10 μs
(typical) more than the requested delay.
Example
beeper.beep(0.5, 2400)
delay(0.250)
beeper.beep(0.5, 2400)
Emit a double-beep at 2400 Hz. The
sequence is 0.5 s on, 0.25 s off, 0.5 s on.
Also see
None
digio.readbit()
This function reads one digital I/O line.
Usage
data = digio.readbit(N)
The state of the I/O line
Digital I/O line number to be read (1 to 14)
Details
A returned value of zero (0) indicates that the line is low. A returned value of one (1) indicates that the
line is high.
Example
Assume line 4 is set high, and it is then read.
Output:
1.00000e+00
Also see
digio.readport() (on page 11-116)
digio.writebit() (on page 11-124)
digio.writeport() (on page 11-125)