Source code for RsSmw.Implementations.Diagnostic.Info.Otime

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class OtimeCls:
	"""
	| Commands in total: 2
	| Subgroups: 0
	| Direct child commands: 2
	"""

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

[docs] def get_set(self) -> int: """ ``DIAGnostic:INFO:OTIMe:SET`` \n Snippet: ``value: int = driver.diagnostic.info.otime.get_set()`` \n No help available """ response = self._core.io.query_str('DIAGnostic:INFO:OTIMe:SET?') return Conversions.str_to_int(response)
[docs] def set_set(self, set_py: int) -> None: """ ``DIAGnostic:INFO:OTIMe:SET`` \n Snippet: ``driver.diagnostic.info.otime.set_set(set_py = 1)`` \n No help available """ param = Conversions.decimal_value_to_str(set_py) self._core.io.write(f'DIAGnostic:INFO:OTIMe:SET {param}')
[docs] def get_value(self) -> int: """ ``DIAGnostic:INFO:OTIMe`` \n Snippet: ``value: int = driver.diagnostic.info.otime.get_value()`` \n Queries the operating hours of the instrument so far. :return: operation_time: integer Range: 0 to INT_MAX """ response = self._core.io.query_str('DIAGnostic:INFO:OTIMe?') return Conversions.str_to_int(response)