Source code for RsCMPX_Base.Implementations.Status.Operation

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class OperationCls: """Operation commands group definition. 10 total commands, 1 Subgroups, 5 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("operation", core, parent) @property def bit(self): """bit commands group. 5 Sub-classes, 0 commands.""" if not hasattr(self, '_bit'): from .Bit import BitCls self._bit = BitCls(self._core, self._cmd_group) return self._bit
[docs] def get_event(self) -> int: """SCPI: STATus:OPERation[:EVENt] \n Snippet: value: int = driver.status.operation.get_event() \n No command help available \n :return: register_value: No help available """ response = self._core.io.query_str('STATus:OPERation:EVENt?') return Conversions.str_to_int(response)
[docs] def get_condition(self) -> int: """SCPI: STATus:OPERation:CONDition \n Snippet: value: int = driver.status.operation.get_condition() \n No command help available \n :return: register_value: No help available """ response = self._core.io.query_str('STATus:OPERation:CONDition?') return Conversions.str_to_int(response)
[docs] def get_enable(self) -> int: """SCPI: STATus:OPERation:ENABle \n Snippet: value: int = driver.status.operation.get_enable() \n No command help available \n :return: register_value: No help available """ response = self._core.io.query_str('STATus:OPERation:ENABle?') return Conversions.str_to_int(response)
[docs] def set_enable(self, register_value: int) -> None: """SCPI: STATus:OPERation:ENABle \n Snippet: driver.status.operation.set_enable(register_value = 1) \n No command help available \n :param register_value: No help available """ param = Conversions.decimal_value_to_str(register_value) self._core.io.write(f'STATus:OPERation:ENABle {param}')
[docs] def get_ptransition(self) -> int: """SCPI: STATus:OPERation:PTRansition \n Snippet: value: int = driver.status.operation.get_ptransition() \n No command help available \n :return: register_value: No help available """ response = self._core.io.query_str('STATus:OPERation:PTRansition?') return Conversions.str_to_int(response)
[docs] def set_ptransition(self, register_value: int) -> None: """SCPI: STATus:OPERation:PTRansition \n Snippet: driver.status.operation.set_ptransition(register_value = 1) \n No command help available \n :param register_value: No help available """ param = Conversions.decimal_value_to_str(register_value) self._core.io.write(f'STATus:OPERation:PTRansition {param}')
[docs] def get_ntransition(self) -> int: """SCPI: STATus:OPERation:NTRansition \n Snippet: value: int = driver.status.operation.get_ntransition() \n No command help available \n :return: register_value: No help available """ response = self._core.io.query_str('STATus:OPERation:NTRansition?') return Conversions.str_to_int(response)
[docs] def set_ntransition(self, register_value: int) -> None: """SCPI: STATus:OPERation:NTRansition \n Snippet: driver.status.operation.set_ntransition(register_value = 1) \n No command help available \n :param register_value: No help available """ param = Conversions.decimal_value_to_str(register_value) self._core.io.write(f'STATus:OPERation:NTRansition {param}')
def clone(self) -> 'OperationCls': """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 = OperationCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group