Count

SCPI Commands :

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

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

get_fixed() float[source]
# SCPI: SEQuence:ITEM:LOOP:COUNt:FIXed
value: float = driver.sequence.item.loop.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:LOOP:COUNt:MAXimum
value: float = driver.sequence.item.loop.count.get_maximum()

Sets the value range of the loop count.

return:

maximum: float Range: 1 to 65535

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

Sets the value range of the loop count.

return:

minimum: No help available

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

Sets the loop count granularity.

return:

step: float Range: 1 to 65535

set_fixed(fixed: float) None[source]
# SCPI: SEQuence:ITEM:LOOP:COUNt:FIXed
driver.sequence.item.loop.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:LOOP:COUNt:MAXimum
driver.sequence.item.loop.count.set_maximum(maximum = 1.0)

Sets the value range of the loop count.

param maximum:

float Range: 1 to 65535

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

Sets the value range of the loop count.

param minimum:

float Range: 1 to 65535

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

Sets the loop count granularity.

param step:

float Range: 1 to 65535