Output
SCPI Commands :
[SOURce<HW>]:FREQuency:LOSCillator:OUTPut:FREQuency
[SOURce<HW>]:FREQuency:LOSCillator:OUTPut:STATe
- Commands in total: 2Subgroups: 0Direct child commands: 2
- get_frequency() float[source]
# [SOURce<HW>]:FREQuency:LOSCillator:OUTPut:FREQuency value: float = driver.source.frequency.loscillator.output.get_frequency()
Queries the current frequency of the local oscillator at the [LO OUT] connector.
- Returns:
frequency: float Range: 100E3 to 20E9
- get_state() bool[source]
# [SOURce<HW>]:FREQuency:LOSCillator:OUTPut:STATe value: bool = driver.source.frequency.loscillator.output.get_state()
Activates the LO output in the second path.
- Returns:
state: 1 | ON | 0| OFF
- set_state(state: bool) None[source]
# [SOURce<HW>]:FREQuency:LOSCillator:OUTPut:STATe driver.source.frequency.loscillator.output.set_state(state = False)
Activates the LO output in the second path.
- Parameters:
state – 1 | ON | 0| OFF