Unused

SCPI Commands :

CPANel:UNUSed:ALL
CPANel:UNUSed:FREQuency
CPANel:UNUSed:LEVel
CPANel:UNUSed:LIST
CPANel:UNUSed:SELect
CPANel:UNUSed:STATe
class UnusedCls[source]

Unused commands group definition. 8 total commands, 1 Subgroups, 6 group commands

get_all() bool[source]
# SCPI: CPANel:UNUSed:ALL
value: bool = driver.cpanel.unused.get_all()

Shows all unused signal generators.

return:

all_py: ON| OFF| 1| 0

get_frequency() float[source]
# SCPI: CPANel:UNUSed:FREQuency
value: float = driver.cpanel.unused.get_frequency()

Sets the RF frequency.

return:

frequency: float

get_level() float[source]
# SCPI: CPANel:UNUSed:LEVel
value: float = driver.cpanel.unused.get_level()

Sets the RF level.

return:

level: float

get_list_py() List[str][source]
# SCPI: CPANel:UNUSed:LIST
value: List[str] = driver.cpanel.unused.get_list_py()

Queries the names of the used/unused signal generators.

return:

list_py: ‘Instr#1’,’Instr#2’,…

get_select() str[source]
# SCPI: CPANel:UNUSed:SELect
value: str = driver.cpanel.unused.get_select()

Selects the element to which the subsequent commands apply.

return:

select: string Available element as queried with the corresponding …:LIST command. For example, method RsPulseSeq.Assignment.Generator.Path.Antenna.listPy

get_state() bool[source]
# SCPI: CPANel:UNUSed:STATe
value: bool = driver.cpanel.unused.get_state()

Activates the RF output of the selected signal generator.

return:

state: ON| OFF| 1| 0

set_all(all_py: bool) None[source]
# SCPI: CPANel:UNUSed:ALL
driver.cpanel.unused.set_all(all_py = False)

Shows all unused signal generators.

param all_py:

ON| OFF| 1| 0

set_frequency(frequency: float) None[source]
# SCPI: CPANel:UNUSed:FREQuency
driver.cpanel.unused.set_frequency(frequency = 1.0)

Sets the RF frequency.

param frequency:

float

set_level(level: float) None[source]
# SCPI: CPANel:UNUSed:LEVel
driver.cpanel.unused.set_level(level = 1.0)

Sets the RF level.

param level:

float

set_select(select: str) None[source]
# SCPI: CPANel:UNUSed:SELect
driver.cpanel.unused.set_select(select = 'abc')

Selects the element to which the subsequent commands apply.

param select:

string Available element as queried with the corresponding …:LIST command. For example, method RsPulseSeq.Assignment.Generator.Path.Antenna.listPy

set_state(state: bool) None[source]
# SCPI: CPANel:UNUSed:STATe
driver.cpanel.unused.set_state(state = False)

Activates the RF output of the selected signal generator.

param state:

ON| OFF| 1| 0

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.cpanel.unused.clone()

Subgroups