Marker

SCPI Commands :

SEQuence:ITEM:MARKer:ALL
SEQuence:ITEM:MARKer:FIRSt
SEQuence:ITEM:MARKer:LAST
class MarkerCls[source]

Marker commands group definition. 7 total commands, 1 Subgroups, 3 group commands

get_all() float[source]
# SCPI: SEQuence:ITEM:MARKer:ALL
value: float = driver.sequence.item.marker.get_all()

Enables up to four markers of the corresponding type.

return:

all_py: float See Table ‘Setting parameter as function of the marker states’. Range: 0 to 65535

get_first() float[source]
# SCPI: SEQuence:ITEM:MARKer:FIRSt
value: float = driver.sequence.item.marker.get_first()

Enables up to four markers of the corresponding type.

return:

first: No help available

get_last() float[source]
# SCPI: SEQuence:ITEM:MARKer:LAST
value: float = driver.sequence.item.marker.get_last()

Enables up to four markers of the corresponding type.

return:

last: No help available

set_all(all_py: float) None[source]
# SCPI: SEQuence:ITEM:MARKer:ALL
driver.sequence.item.marker.set_all(all_py = 1.0)

Enables up to four markers of the corresponding type.

param all_py:

float See Table ‘Setting parameter as function of the marker states’. Range: 0 to 65535

set_first(first: float) None[source]
# SCPI: SEQuence:ITEM:MARKer:FIRSt
driver.sequence.item.marker.set_first(first = 1.0)

Enables up to four markers of the corresponding type.

param first:

float See Table ‘Setting parameter as function of the marker states’. Range: 0 to 65535

set_last(last: float) None[source]
# SCPI: SEQuence:ITEM:MARKer:LAST
driver.sequence.item.marker.set_last(last = 1.0)

Enables up to four markers of the corresponding type.

param last:

float See Table ‘Setting parameter as function of the marker states’. Range: 0 to 65535

Cloning the Group

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

Subgroups