Output

SCPI Commands :

[SOURce<HW>]:EFRontend:LOSCillator:OUTPut:FREQuency
[SOURce<HW>]:EFRontend:LOSCillator:OUTPut:STATe
Commands in total: 2
Subgroups: 0
Direct child commands: 2
get_frequency() float[source]
# [SOURce<HW>]:EFRontend:LOSCillator:OUTPut:FREQuency
value: float = driver.source.efrontend.loscillator.output.get_frequency()

Requires [:SOURce<hw>]:EFRontend:LOSCillator:OUTPut:STATe 1. Queries the current frequency on the ‘LO Out’ connector of the connected external frontend.

Returns:

output_frequency: float

get_state() bool[source]
# [SOURce<HW>]:EFRontend:LOSCillator:OUTPut:STATe
value: bool = driver.source.efrontend.loscillator.output.get_state()

Activates or deactivates the LO output of the connected external frontend.

Returns:

out_state: 1 | ON | 0| OFF

set_state(out_state: bool) None[source]
# [SOURce<HW>]:EFRontend:LOSCillator:OUTPut:STATe
driver.source.efrontend.loscillator.output.set_state(out_state = False)

Activates or deactivates the LO output of the connected external frontend.

Parameters:

out_state – 1 | ON | 0| OFF