Source code for RsFsw.Implementations.Applications.K18_AmplifierEt.Configure.Sync.Estimation.Range

from .......Internal.Core import Core
from .......Internal.CommandsGroup import CommandsGroup
from .......Internal.Types import DataType
from .......Internal.ArgSingleList import ArgSingleList
from .......Internal.ArgSingle import ArgSingle


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

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

[docs] def set(self, start: float, stop: float) -> None: """ ``CONFigure:SYNC:ESTimation:RANGe`` \n Snippet: ``driver.applications.k18AmplifierEt.configure.sync.estimation.range.set(start = 1.0, stop = 1.0)`` \n No help available """ param = ArgSingleList().compose_cmd_string(ArgSingle('start', start, DataType.Float), ArgSingle('stop', stop, DataType.Float)) self._core.io.write(f'CONFigure:SYNC:ESTimation:RANGe {param}'.rstrip())