Base

SCPI Command:

CONFigure:BASE:SPEaker
CONFigure:BASE:SCENario
class BaseCls[source]

Base commands group definition. 28 total commands, 11 Subgroups, 2 group commands

get_scenario() BaseScenario[source]
# SCPI: CONFigure:BASE:SCENario
value: enums.BaseScenario = driver.configure.base.get_scenario()

Selects the test scenario. Always select the scenario to be used before configuring and using an application. If you show the display during remote control (for example with the ‘Hide Remote Screen’ button or SYSTem:DISPlay:UPDate ON) , the execution of this command takes some seconds. Insert a pause into your test script after this command, to ensure that the change has been applied. Or query the setting until the correct new value is returned, before you continue your test script.

return:

scenario: TXTest | RXTest | DXTest | SPECtrum | EXPert | AUDio | AVIonics | DTXTest | DRXTest | DSPectrum | DEXPert TXTest | RXTest | DXTest | SPECtrum | EXPert | AUDio | AVIonics Analog scenarios DTXTest | DRXTest | DSPectrum | DEXPert Digital scenarios NOSC Cannot be set, but is returned by a query if no scenario is active.

get_speaker() bool[source]
# SCPI: CONFigure:BASE:SPEaker
value: bool = driver.configure.base.get_speaker()

Switches the loudspeaker / headphones on or off.

return:

speaker: ON | OFF

set_scenario(scenario: BaseScenario) None[source]
# SCPI: CONFigure:BASE:SCENario
driver.configure.base.set_scenario(scenario = enums.BaseScenario.AUDio)

Selects the test scenario. Always select the scenario to be used before configuring and using an application. If you show the display during remote control (for example with the ‘Hide Remote Screen’ button or SYSTem:DISPlay:UPDate ON) , the execution of this command takes some seconds. Insert a pause into your test script after this command, to ensure that the change has been applied. Or query the setting until the correct new value is returned, before you continue your test script.

param scenario:

TXTest | RXTest | DXTest | SPECtrum | EXPert | AUDio | AVIonics | DTXTest | DRXTest | DSPectrum | DEXPert TXTest | RXTest | DXTest | SPECtrum | EXPert | AUDio | AVIonics Analog scenarios DTXTest | DRXTest | DSPectrum | DEXPert Digital scenarios NOSC Cannot be set, but is returned by a query if no scenario is active.

set_speaker(speaker: bool) None[source]
# SCPI: CONFigure:BASE:SPEaker
driver.configure.base.set_speaker(speaker = False)

Switches the loudspeaker / headphones on or off.

param speaker:

ON | OFF

Cloning the Group

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

Subgroups