ListPy

SCPI Commands :

SOURce:GPRF:GENerator<Instance>:SEQuencer:LIST:CREate
SOURce:GPRF:GENerator<Instance>:SEQuencer:LIST:INDex
SOURce:GPRF:GENerator<Instance>:SEQuencer:LIST:MINDex
class ListPyCls[source]

ListPy commands group definition. 54 total commands, 13 Subgroups, 3 group commands

get_index() int[source]
# SCPI: SOURce:GPRF:GENerator<Instance>:SEQuencer:LIST:INDex
value: int = driver.source.gprf.generator.sequencer.listPy.get_index()

Selects an entry of the sequencer list. Some other commands use this setting.

return:

current_index: Index of the selected list entry

get_mindex() int[source]
# SCPI: SOURce:GPRF:GENerator<Instance>:SEQuencer:LIST:MINDex
value: int = driver.source.gprf.generator.sequencer.listPy.get_mindex()

Queries the highest index of the sequencer list. The list contains entries with the indices 0 to <MaximumIndex>.

return:

maximum_index: No help available

set_create(entries: float) None[source]
# SCPI: SOURce:GPRF:GENerator<Instance>:SEQuencer:LIST:CREate
driver.source.gprf.generator.sequencer.listPy.set_create(entries = 1.0)

Deletes all entries of the sequencer list and creates the defined number of new entries with default settings.

param entries:

Number of entries to be created.

set_index(current_index: int) None[source]
# SCPI: SOURce:GPRF:GENerator<Instance>:SEQuencer:LIST:INDex
driver.source.gprf.generator.sequencer.listPy.set_index(current_index = 1)

Selects an entry of the sequencer list. Some other commands use this setting.

param current_index:

Index of the selected list entry

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.gprf.generator.sequencer.listPy.clone()

Subgroups