from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class AdjustCls:
"""
| Commands in total: 2
| Subgroups: 0
| Direct child commands: 2
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("adjust", core, parent)
[docs]
def get_value(self) -> int:
"""
``[SOURce]:ROSCillator:[INTernal]:ADJust:VALue`` \n
Snippet: ``value: int = driver.source.roscillator.internal.adjust.get_value()`` \n
Specifies the frequency correction value (adjustment value) .
:return: value: integer
"""
response = self._core.io.query_str('SOURce:ROSCillator:INTernal:ADJust:VALue?')
return Conversions.str_to_int(response)
[docs]
def set_value(self, value: int) -> None:
"""
``[SOURce]:ROSCillator:[INTernal]:ADJust:VALue`` \n
Snippet: ``driver.source.roscillator.internal.adjust.set_value(value = 1)`` \n
Specifies the frequency correction value (adjustment value) .
:param value: integer
"""
param = Conversions.decimal_value_to_str(value)
self._core.io.write(f'SOURce:ROSCillator:INTernal:ADJust:VALue {param}')
[docs]
def get_state(self) -> bool:
"""
``[SOURce]:ROSCillator:[INTernal]:ADJust:[STATe]`` \n
Snippet: ``value: bool = driver.source.roscillator.internal.adjust.get_state()`` \n
Determines whether the calibrated (off) or a user-defined (on) adjustment value is used for fine adjustment of the
frequency.
:return: state: 1 | ON | 0| OFF 0 Fine adjustment with the calibrated frequency value 1 User-defined adjustment value. The instrument is no longer in the calibrated state. The calibration value is, however, not changed. The instrument resumes the calibrated state if you send SOURce:ROSCillator:INTernal:ADJust:STATe 0.
"""
response = self._core.io.query_str('SOURce:ROSCillator:INTernal:ADJust:STATe?')
return Conversions.str_to_bool(response)
[docs]
def set_state(self, state: bool) -> None:
"""
``[SOURce]:ROSCillator:[INTernal]:ADJust:[STATe]`` \n
Snippet: ``driver.source.roscillator.internal.adjust.set_state(state = False)`` \n
Determines whether the calibrated (off) or a user-defined (on) adjustment value is used for fine adjustment of the
frequency.
:param state: 1 | ON | 0| OFF 0 Fine adjustment with the calibrated frequency value 1 User-defined adjustment value. The instrument is no longer in the calibrated state. The calibration value is, however, not changed. The instrument resumes the calibrated state if you send SOURce:ROSCillator:INTernal:ADJust:STATe 0.
"""
param = Conversions.bool_to_str(state)
self._core.io.write(f'SOURce:ROSCillator:INTernal:ADJust:STATe {param}')