Source code for RsSmbv.Implementations.System.Information

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
class InformationCls:
	"""
	| Commands in total: 1
	| Subgroups: 0
	| Direct child commands: 1
	"""

	def __init__(self, core: Core, parent):
		self._core = core
		self._cmd_group = CommandsGroup("information", core, parent)

[docs] def get_sr(self) -> str: """ ``SYSTem:INFormation:SR`` \n Snippet: ``value: str = driver.system.information.get_sr()`` \n No help available """ response = self._core.io.query_str('SYSTem:INFormation:SR?') return trim_str_response(response)
[docs] def set_sr(self, sr_info: str) -> None: """ ``SYSTem:INFormation:SR`` \n Snippet: ``driver.system.information.set_sr(sr_info = 'abc')`` \n No help available """ param = Conversions.value_to_quoted_str(sr_info) self._core.io.write(f'SYSTem:INFormation:SR {param}')