Source code for RsSmw.Implementations.Sconfiguration.External.Fader.Rf.Frequency.Offset

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


# 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, freq_offset: float, digitalIq=repcap.DigitalIq.Default) -> None: """ ``SCONfiguration:EXTernal:FADer<CH>:RF:FREQuency:OFFSet`` \n Snippet: ``driver.sconfiguration.external.fader.rf.frequency.offset.set(freq_offset = 1.0, digitalIq = repcap.DigitalIq.Default)`` \n In coupled mode, offsets the RF frequency of the external instrument with the selected delta value. :param freq_offset: float Range: -3E9 to 3E9 :param digitalIq: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Fader') """ param = Conversions.decimal_value_to_str(freq_offset) digitalIq_cmd_val = self._cmd_group.get_repcap_cmd_value(digitalIq, repcap.DigitalIq) self._core.io.write(f'SCONfiguration:EXTernal:FADer{digitalIq_cmd_val}:RF:FREQuency:OFFSet {param}')
[docs] def get(self, digitalIq=repcap.DigitalIq.Default) -> float: """ ``SCONfiguration:EXTernal:FADer<CH>:RF:FREQuency:OFFSet`` \n Snippet: ``value: float = driver.sconfiguration.external.fader.rf.frequency.offset.get(digitalIq = repcap.DigitalIq.Default)`` \n In coupled mode, offsets the RF frequency of the external instrument with the selected delta value. :param digitalIq: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Fader') :return: freq_offset: float Range: -3E9 to 3E9 """ digitalIq_cmd_val = self._cmd_group.get_repcap_cmd_value(digitalIq, repcap.DigitalIq) response = self._core.io.query_str(f'SCONfiguration:EXTernal:FADer{digitalIq_cmd_val}:RF:FREQuency:OFFSet?') return Conversions.str_to_float(response)