Source code for RsSmbv.Implementations.Status.Operation

from ....Internal.Core import Core
from ....Internal.CommandsGroup import CommandsGroup
from ....Internal import Conversions
from ....Internal.Utilities import trim_str_response


# 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_condition(self) -> str: """SCPI: STATus:OPERation:CONDition \n Snippet: value: str = driver.status.operation.get_condition() \n Quieries the content of the CONDition part of the STATus:OPERation register. This part contains information on the action currently being performed in the instrument. The content is not deleted after being read out because it indicates the current hardware status. \n :return: condition: string """ response = self._core.io.query_str('STATus:OPERation:CONDition?') return trim_str_response(response)
[docs] def get_enable(self) -> str: """SCPI: STATus:OPERation:ENABle \n Snippet: value: str = driver.status.operation.get_enable() \n Sets the bits of the ENABle part of the STATus:OPERation register. This setting determines which events of the Status-Event part are forwarded to the sum bit in the status byte. These events can be used for a service request. \n :return: enable: string """ response = self._core.io.query_str('STATus:OPERation:ENABle?') return trim_str_response(response)
[docs] def set_enable(self, enable: str) -> None: """SCPI: STATus:OPERation:ENABle \n Snippet: driver.status.operation.set_enable(enable = 'abc') \n Sets the bits of the ENABle part of the STATus:OPERation register. This setting determines which events of the Status-Event part are forwarded to the sum bit in the status byte. These events can be used for a service request. \n :param enable: string """ param = Conversions.value_to_quoted_str(enable) self._core.io.write(f'STATus:OPERation:ENABle {param}')
[docs] def get_ntransition(self) -> str: """SCPI: STATus:OPERation:NTRansition \n Snippet: value: str = driver.status.operation.get_ntransition() \n Sets the bits of the NTRansition part of the STATus:OPERation register. If a bit is set, a transition from 1 to 0 in the condition part causes an entry to be made in the EVENt part of the register. The disappearance of an event in the hardware is thus registered, for example the end of an adjustment. \n :return: ntransition: string """ response = self._core.io.query_str('STATus:OPERation:NTRansition?') return trim_str_response(response)
[docs] def set_ntransition(self, ntransition: str) -> None: """SCPI: STATus:OPERation:NTRansition \n Snippet: driver.status.operation.set_ntransition(ntransition = 'abc') \n Sets the bits of the NTRansition part of the STATus:OPERation register. If a bit is set, a transition from 1 to 0 in the condition part causes an entry to be made in the EVENt part of the register. The disappearance of an event in the hardware is thus registered, for example the end of an adjustment. \n :param ntransition: string """ param = Conversions.value_to_quoted_str(ntransition) self._core.io.write(f'STATus:OPERation:NTRansition {param}')
[docs] def get_ptransition(self) -> str: """SCPI: STATus:OPERation:PTRansition \n Snippet: value: str = driver.status.operation.get_ptransition() \n Sets the bits of the PTRansition part of the STATus:OPERation register. If a bit is set, a transition from 0 to 1 in the condition part causes an entry to be made in the EVENt part of the register. A new event in the hardware is thus registered, for example the start of an adjustment. \n :return: ptransition: string """ response = self._core.io.query_str('STATus:OPERation:PTRansition?') return trim_str_response(response)
[docs] def set_ptransition(self, ptransition: str) -> None: """SCPI: STATus:OPERation:PTRansition \n Snippet: driver.status.operation.set_ptransition(ptransition = 'abc') \n Sets the bits of the PTRansition part of the STATus:OPERation register. If a bit is set, a transition from 0 to 1 in the condition part causes an entry to be made in the EVENt part of the register. A new event in the hardware is thus registered, for example the start of an adjustment. \n :param ptransition: string """ param = Conversions.value_to_quoted_str(ptransition) self._core.io.write(f'STATus:OPERation:PTRansition {param}')
[docs] def get_event(self) -> str: """SCPI: STATus:OPERation:[EVENt] \n Snippet: value: str = driver.status.operation.get_event() \n Queries the content of the EVENt part of the STATus:OPERation register. This part contains information on the actions performed in the instrument since the last readout. The content of the EVENt part is deleted after being read out. \n :return: value: No help available """ response = self._core.io.query_str('STATus:OPERation:EVENt?') return trim_str_response(response)
[docs] def set_event(self, value: str) -> None: """SCPI: STATus:OPERation:[EVENt] \n Snippet: driver.status.operation.set_event(value = 'abc') \n Queries the content of the EVENt part of the STATus:OPERation register. This part contains information on the actions performed in the instrument since the last readout. The content of the EVENt part is deleted after being read out. \n :param value: string """ param = Conversions.value_to_quoted_str(value) self._core.io.write(f'STATus:OPERation:EVENt {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