State

SCPI Command :

[SOURce<HW>]:BB:MCCW:CARRier:LIST:STATe
class StateCls[source]

State commands group definition. 1 total commands, 0 Subgroups, 1 group commands

get(start: int, count: int) List[int][source]
# SCPI: [SOURce<HW>]:BB:MCCW:CARRier:LIST:STATe
value: List[int] = driver.source.bb.mccw.carrier.listPy.state.get(start = 1, count = 1)

Switches the carrier on or off with the aid of a value list. The first value in the list is assigned to the carrier with index 0, the second value to the carrier with index 1, etc. The maximum length corresponds to the maximum number of multi carriers. There is no need to enter all the values every time. Values not set by the value list are set with the default values provided they have already been explicitly set by a previous command. If this is the case, the values continue to apply until overwritten.

param start

integer start carrier index Range: 0 to lastCarrier

param count

integer number of carriers in the carrier range, starting from the Start carrier Range: 1 to lastCarrier

return

states: No help available

set(states: List[int]) None[source]
# SCPI: [SOURce<HW>]:BB:MCCW:CARRier:LIST:STATe
driver.source.bb.mccw.carrier.listPy.state.set(states = [1, 2, 3])

Switches the carrier on or off with the aid of a value list. The first value in the list is assigned to the carrier with index 0, the second value to the carrier with index 1, etc. The maximum length corresponds to the maximum number of multi carriers. There is no need to enter all the values every time. Values not set by the value list are set with the default values provided they have already been explicitly set by a previous command. If this is the case, the values continue to apply until overwritten.

param states

No help available