Count

SCPI Commands :

SEQuence:ITEM:REP:COUNt:DURation
SEQuence:ITEM:REP:COUNt:FIXed
SEQuence:ITEM:REP:COUNt:MAXimum
SEQuence:ITEM:REP:COUNt:MINimum
SEQuence:ITEM:REP:COUNt:STEP
class CountCls[source]

Count commands group definition. 5 total commands, 0 Subgroups, 5 group commands

get_duration() float[source]
# SCPI: SEQuence:ITEM:REP:COUNt:DURation
value: float = driver.sequence.item.rep.count.get_duration()

Sets a time duration.

return:

duration: float Range: 0 to 1e+09, Unit: sec

get_fixed() float[source]
# SCPI: SEQuence:ITEM:REP:COUNt:FIXed
value: float = driver.sequence.item.rep.count.get_fixed()

Sets the repetition number as a numeric value.

return:

fixed: float Range: 1 to 65535

get_maximum() float[source]
# SCPI: SEQuence:ITEM:REP:COUNt:MAXimum
value: float = driver.sequence.item.rep.count.get_maximum()

Sets the value range of the repetition count.

return:

maximum: float Range: 1 to 65535

get_minimum() float[source]
# SCPI: SEQuence:ITEM:REP:COUNt:MINimum
value: float = driver.sequence.item.rep.count.get_minimum()

Sets the value range of the repetition count.

return:

minimum: No help available

get_step() float[source]
# SCPI: SEQuence:ITEM:REP:COUNt:STEP
value: float = driver.sequence.item.rep.count.get_step()

Sets the repetition count granularity.

return:

step: float Range: 1 to 65535

set_duration(duration: float) None[source]
# SCPI: SEQuence:ITEM:REP:COUNt:DURation
driver.sequence.item.rep.count.set_duration(duration = 1.0)

Sets a time duration.

param duration:

float Range: 0 to 1e+09, Unit: sec

set_fixed(fixed: float) None[source]
# SCPI: SEQuence:ITEM:REP:COUNt:FIXed
driver.sequence.item.rep.count.set_fixed(fixed = 1.0)

Sets the repetition number as a numeric value.

param fixed:

float Range: 1 to 65535

set_maximum(maximum: float) None[source]
# SCPI: SEQuence:ITEM:REP:COUNt:MAXimum
driver.sequence.item.rep.count.set_maximum(maximum = 1.0)

Sets the value range of the repetition count.

param maximum:

float Range: 1 to 65535

set_minimum(minimum: float) None[source]
# SCPI: SEQuence:ITEM:REP:COUNt:MINimum
driver.sequence.item.rep.count.set_minimum(minimum = 1.0)

Sets the value range of the repetition count.

param minimum:

float Range: 1 to 65535

set_step(step: float) None[source]
# SCPI: SEQuence:ITEM:REP:COUNt:STEP
driver.sequence.item.rep.count.set_step(step = 1.0)

Sets the repetition count granularity.

param step:

float Range: 1 to 65535