7½ Digit Graphical Sampling Multimeter Reference Manual  Section 8: 
 
DMM7510-901-01 Rev. B / May 2015  8-263 
 
Example 
 
digio.line[4].mode = digio.MODE_TRIGGER_IN 
triggered = trigger.digin[4].wait(3) 
print(triggered) 
Waits up to 3 s for a trigger to be detected on 
trigger line 4, then outputs the results. 
Output if no trigger is detected: 
false 
Output if a trigger is detected: 
Also see 
digio.line[N].mode (on page 8-52) 
Digital I/O port configuration (on page 3-49) 
trigger.digin[N].clear() (on page 8-260) 
 
trigger.digout[N].assert() 
This function asserts a trigger pulse on one of the digital I/O lines. 
Type  TSP-Link accessible 
Affected by  Where saved  Default value 
   
Usage 
trigger.digout[N].assert() 
 
Digital I/O trigger line (1 to 6) 
 
Details 
Initiates a trigger event and does not wait for completion. The pulse width that is set determines how 
long the instrument asserts the trigger. 
Example 
 
digio.line[2].mode = digio.MODE_TRIGGER_OUT 
trigger.digout[2].pulsewidth = 20e-6 
trigger.digout[2].assert() 
Asserts a trigger on digital I/O line 2 with a pulse 
width of 20 µs. 
Also see 
digio.line[N].mode (on page 8-52) 
Digital I/O port configuration (on page 3-49) 
trigger.digout[N].pulsewidth (on page 8-264) 
trigger.digout[N].pulsewidth (on page 8-264)