from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class OutputCls:
"""
| Commands in total: 2
| Subgroups: 0
| Direct child commands: 2
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("output", core, parent)
[docs]
def get_frequency(self) -> float:
"""
``[SOURce<HW>]:FREQuency:LOSCillator:OUTPut:FREQuency`` \n
Snippet: ``value: float = driver.source.frequency.loscillator.output.get_frequency()`` \n
Queries the current frequency of the local oscillator at the [LO OUT] connector.
:return: frequency: float Range: 100E3 to 20E9
"""
response = self._core.io.query_str('SOURce<HwInstance>:FREQuency:LOSCillator:OUTPut:FREQuency?')
return Conversions.str_to_float(response)
[docs]
def get_state(self) -> bool:
"""
``[SOURce<HW>]:FREQuency:LOSCillator:OUTPut:STATe`` \n
Snippet: ``value: bool = driver.source.frequency.loscillator.output.get_state()`` \n
Activates the LO output in the second path.
:return: state: 1 | ON | 0| OFF
"""
response = self._core.io.query_str('SOURce<HwInstance>:FREQuency:LOSCillator:OUTPut:STATe?')
return Conversions.str_to_bool(response)
[docs]
def set_state(self, state: bool) -> None:
"""
``[SOURce<HW>]:FREQuency:LOSCillator:OUTPut:STATe`` \n
Snippet: ``driver.source.frequency.loscillator.output.set_state(state = False)`` \n
Activates the LO output in the second path.
:param state: 1 | ON | 0| OFF
"""
param = Conversions.bool_to_str(state)
self._core.io.write(f'SOURce<HwInstance>:FREQuency:LOSCillator:OUTPut:STATe {param}')