Source code for RsCMPX_Base.Implementations.Configure.Base.Adjustment

from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal import Conversions
from ..... import enums


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class AdjustmentCls: """Adjustment commands group definition. 4 total commands, 1 Subgroups, 3 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("adjustment", core, parent) @property def sfDefault(self): """sfDefault commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_sfDefault'): from .SfDefault import SfDefaultCls self._sfDefault = SfDefaultCls(self._core, self._cmd_group) return self._sfDefault # noinspection PyTypeChecker
[docs] def get_type_py(self) -> enums.OscillatorType: """SCPI: CONFigure:BASE:ADJustment:TYPE \n Snippet: value: enums.OscillatorType = driver.configure.base.adjustment.get_type_py() \n No command help available \n :return: adj_type: No help available """ response = self._core.io.query_str('CONFigure:BASE:ADJustment:TYPE?') return Conversions.str_to_scalar_enum(response, enums.OscillatorType)
[docs] def get_value(self) -> float: """SCPI: CONFigure:BASE:ADJustment:VALue \n Snippet: value: float = driver.configure.base.adjustment.get_value() \n No command help available \n :return: adj_value: No help available """ response = self._core.io.query_str('CONFigure:BASE:ADJustment:VALue?') return Conversions.str_to_float(response)
[docs] def set_value(self, adj_value: float) -> None: """SCPI: CONFigure:BASE:ADJustment:VALue \n Snippet: driver.configure.base.adjustment.set_value(adj_value = 1.0) \n No command help available \n :param adj_value: No help available """ param = Conversions.decimal_value_to_str(adj_value) self._core.io.write(f'CONFigure:BASE:ADJustment:VALue {param}')
[docs] def save(self) -> None: """SCPI: CONFigure:BASE:ADJustment:SAVE \n Snippet: driver.configure.base.adjustment.save() \n No command help available \n """ self._core.io.write(f'CONFigure:BASE:ADJustment:SAVE')
[docs] def save_with_opc(self, opc_timeout_ms: int = -1) -> None: """SCPI: CONFigure:BASE:ADJustment:SAVE \n Snippet: driver.configure.base.adjustment.save_with_opc() \n No command help available \n Same as save, but waits for the operation to complete before continuing further. Use the RsCMPX_Base.utilities.opc_timeout_set() to set the timeout value. \n :param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call.""" self._core.io.write_with_opc(f'CONFigure:BASE:ADJustment:SAVE', opc_timeout_ms)
def clone(self) -> 'AdjustmentCls': """Clones the group by creating new object from it and its whole existing subgroups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group""" new_group = AdjustmentCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group