Sequencer
SCPI Command :
SYSTem:SEQuencer
- class SequencerCls[source]
Sequencer commands group definition. 1 total commands, 0 Subgroups, 1 group commands
- get() bool [source]
# SCPI: 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’.
- return
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]
# SCPI: 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’.
- param 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.