Source code for RsFsw.Implementations.Instrument.Couple.Generator.Center.Offset

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


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

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

[docs] def set(self, frequency: float) -> None: """ ``INSTrument:COUPle:GENerator:CENTer:OFFSet`` \n Snippet: ``driver.instrument.couple.generator.center.offset.set(frequency = 1.0)`` \n Defines a fixed offset to the center frequency of the FSW for the coupled signal generator. This command requires the method ``RsFsw.instrument.couple.generator.state.set()`` and the method ``RsFsw.instrument.couple.generator.center.state.set()`` to be ON. :param frequency: Unit: HZ """ param = Conversions.decimal_value_to_str(frequency) self._core.io.write(f'INSTrument:COUPle:GENerator:CENTer:OFFSet {param}')
[docs] def get(self) -> float: """ ``INSTrument:COUPle:GENerator:CENTer:OFFSet`` \n Snippet: ``value: float = driver.instrument.couple.generator.center.offset.get()`` \n Defines a fixed offset to the center frequency of the FSW for the coupled signal generator. This command requires the method ``RsFsw.instrument.couple.generator.state.set()`` and the method ``RsFsw.instrument.couple.generator.center.state.set()`` to be ON. :return: frequency: Unit: HZ """ response = self._core.io.query_str(f'INSTrument:COUPle:GENerator:CENTer:OFFSet?') return Conversions.str_to_float(response)