Source code for RsFsw.Implementations.Applications.K50_Spurious.Sense.Mixer.Frequency.Start

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


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

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

[docs] def set(self, frequency: float) -> None: """ ``[SENSe]:MIXer:FREQuency:STARt`` \n Snippet: ``driver.applications.k50Spurious.sense.mixer.frequency.start.set(frequency = 1.0)`` \n Sets or queries the frequency at which the external mixer band starts. """ param = Conversions.decimal_value_to_str(frequency) self._core.io.write(f'SENSe:MIXer:FREQuency:STARt {param}')
[docs] def get(self) -> float: """ ``[SENSe]:MIXer:FREQuency:STARt`` \n Snippet: ``value: float = driver.applications.k50Spurious.sense.mixer.frequency.start.get()`` \n Sets or queries the frequency at which the external mixer band starts. """ response = self._core.io.query_str(f'SENSe:MIXer:FREQuency:STARt?') return Conversions.str_to_float(response)