Item

SCPI Commands :

IPM:LIST:ITEM:COUNt
IPM:LIST:ITEM:DELete
IPM:LIST:ITEM:REPetition
IPM:LIST:ITEM:SELect
IPM:LIST:ITEM:TIME
IPM:LIST:ITEM:VALue
class ItemCls[source]

Item commands group definition. 7 total commands, 1 Subgroups, 6 group commands

delete(delete: float) None[source]
# SCPI: IPM:LIST:ITEM:DELete
driver.ipm.listPy.item.delete(delete = 1.0)

Deletes the particular item.

param delete:

float

get_count() float[source]
# SCPI: IPM:LIST:ITEM:COUNt
value: float = driver.ipm.listPy.item.get_count()

Queries the number of existing items.

return:

count: integer

get_repetition() float[source]
# SCPI: IPM:LIST:ITEM:REPetition
value: float = driver.ipm.listPy.item.get_repetition()

Sets the number of times a list item is repeated.

return:

repetition: float Range: 1 to 1e+09

get_select() float[source]
# SCPI: IPM:LIST:ITEM:SELect
value: float = driver.ipm.listPy.item.get_select()

Selects the item to which the subsequent commands apply.

return:

select: float Item number within the range 1 to …:COUNt. For example, method RsPulseSeq.Sequence.Item.count. Range: 1 to 4096

get_time() float[source]
# SCPI: IPM:LIST:ITEM:TIME
value: float = driver.ipm.listPy.item.get_time()

Sets how long a list item is repeated.

return:

time: float Range: 0 to 1e+09

get_value() float[source]
# SCPI: IPM:LIST:ITEM:VALue
value: float = driver.ipm.listPy.item.get_value()

Sets the value of the selected list item.

return:

value: float Range: -1e+11 to 1e+11

set_repetition(repetition: float) None[source]
# SCPI: IPM:LIST:ITEM:REPetition
driver.ipm.listPy.item.set_repetition(repetition = 1.0)

Sets the number of times a list item is repeated.

param repetition:

float Range: 1 to 1e+09

set_select(select: float) None[source]
# SCPI: IPM:LIST:ITEM:SELect
driver.ipm.listPy.item.set_select(select = 1.0)

Selects the item to which the subsequent commands apply.

param select:

float Item number within the range 1 to …:COUNt. For example, method RsPulseSeq.Sequence.Item.count. Range: 1 to 4096

set_time(time: float) None[source]
# SCPI: IPM:LIST:ITEM:TIME
driver.ipm.listPy.item.set_time(time = 1.0)

Sets how long a list item is repeated.

param time:

float Range: 0 to 1e+09

set_value(value: float) None[source]
# SCPI: IPM:LIST:ITEM:VALue
driver.ipm.listPy.item.set_value(value = 1.0)

Sets the value of the selected list item.

param value:

float Range: -1e+11 to 1e+11

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.ipm.listPy.item.clone()

Subgroups