Source code for RsFswp.Implementations.Diagnostic.Hums.Tags

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class TagsCls: """Tags commands group definition. 4 total commands, 2 Subgroups, 2 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("tags", core, parent) @property def all(self): """all commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_all'): from .All import AllCls self._all = AllCls(self._core, self._cmd_group) return self._all @property def value(self): """value commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_value'): from .Value import ValueCls self._value = ValueCls(self._core, self._cmd_group) return self._value
[docs] def delete(self, delete_tag: str) -> None: """SCPI: DIAGnostic:HUMS:TAGS:DELete \n Snippet: driver.diagnostic.hums.tags.delete(delete_tag = '1') \n Deletes a certain tag you assigned to your instrument, including its key and value. \n :param delete_tag: ID number of the tag you want to delete. To identify the ID number, query all device tags from the system first. For more information, see method RsFswp.Diagnostic.Hums.Tags.All.get_. """ param = Conversions.value_to_quoted_str(delete_tag) self._core.io.write(f'DIAGnostic:HUMS:TAGS:DELete {param}')
[docs] def delete_all(self) -> None: """SCPI: DIAGnostic:HUMS:TAGS:DELete:ALL \n Snippet: driver.diagnostic.hums.tags.delete_all() \n Deletes all key-value tags you have assigned to the instrument. \n """ self._core.io.write(f'DIAGnostic:HUMS:TAGS:DELete:ALL')
[docs] def delete_all_with_opc(self, opc_timeout_ms: int = -1) -> None: """SCPI: DIAGnostic:HUMS:TAGS:DELete:ALL \n Snippet: driver.diagnostic.hums.tags.delete_all_with_opc() \n Deletes all key-value tags you have assigned to the instrument. \n Same as delete_all, but waits for the operation to complete before continuing further. Use the RsFswp.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'DIAGnostic:HUMS:TAGS:DELete:ALL', opc_timeout_ms)
def clone(self) -> 'TagsCls': """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 = TagsCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group