Sequencer
SCPI Command :
SYSTem:SEQuencer
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get() bool[source]
# SYSTem:SEQuencer value: bool = driver.system.sequencer.get()
Turns the Sequencer on and off. The Sequencer must be active before any other Sequencer commands (INIT:SEQ… ) are executed, otherwise an error occurs. For details on the Sequencer see ‘The Sequencer Concept’. A detailed programming example is provided in ‘Programming Example: Performing a Sequence of Measurements’.
- Returns:
state: ON | OFF | 0 | 1 ON | 1 The Sequencer is activated and a sequential measurement is started immediately. OFF | 0 The Sequencer is deactivated. Any running sequential measurements are stopped. Further Sequencer commands (INIT:SEQ…) are not available.
- set(state: bool) None[source]
# SYSTem:SEQuencer driver.system.sequencer.set(state = False)
Turns the Sequencer on and off. The Sequencer must be active before any other Sequencer commands (INIT:SEQ… ) are executed, otherwise an error occurs. For details on the Sequencer see ‘The Sequencer Concept’. A detailed programming example is provided in ‘Programming Example: Performing a Sequence of Measurements’.
- Parameters:
state – ON | OFF | 0 | 1 ON | 1 The Sequencer is activated and a sequential measurement is started immediately. OFF | 0 The Sequencer is deactivated. Any running sequential measurements are stopped. Further Sequencer commands (INIT:SEQ…) are not available.