Source code for RsCMPX_Base.Implementations.System.Display

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class DisplayCls: """Display commands group definition. 3 total commands, 1 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("display", core, parent) @property def monitor(self): """monitor commands group. 1 Sub-classes, 1 commands.""" if not hasattr(self, '_monitor'): from .Monitor import MonitorCls self._monitor = MonitorCls(self._core, self._cmd_group) return self._monitor
[docs] def get_update(self) -> bool: """SCPI: SYSTem:DISPlay:UPDate \n Snippet: value: bool = driver.system.display.get_update() \n No command help available \n :return: display_update: No help available """ response = self._core.io.query_str('SYSTem:DISPlay:UPDate?') return Conversions.str_to_bool(response)
[docs] def set_update(self, display_update: bool) -> None: """SCPI: SYSTem:DISPlay:UPDate \n Snippet: driver.system.display.set_update(display_update = False) \n No command help available \n :param display_update: No help available """ param = Conversions.bool_to_str(display_update) self._core.io.write(f'SYSTem:DISPlay:UPDate {param}')
def clone(self) -> 'DisplayCls': """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 = DisplayCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group