Source code for RsSmbv.Implementations.Source.Bb.Ils.Localizer.Rlobe

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


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

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

[docs] def get_frequency(self) -> float: """ ``[SOURce<HW>]:[BB]:ILS:LOCalizer:RLOBe:[FREQuency]`` \n Snippet: ``value: float = driver.source.bb.ils.localizer.rlobe.get_frequency()`` \n Sets the modulation frequency of the antenna lobe arranged at the right viewed from the air plane for the ILS localizer modulation signal. :return: frequency: float Range: 100 to 200 """ response = self._core.io.query_str('SOURce<HwInstance>:BB:ILS:LOCalizer:RLOBe:FREQuency?') return Conversions.str_to_float(response)
[docs] def set_frequency(self, frequency: float) -> None: """ ``[SOURce<HW>]:[BB]:ILS:LOCalizer:RLOBe:[FREQuency]`` \n Snippet: ``driver.source.bb.ils.localizer.rlobe.set_frequency(frequency = 1.0)`` \n Sets the modulation frequency of the antenna lobe arranged at the right viewed from the air plane for the ILS localizer modulation signal. :param frequency: float Range: 100 to 200 """ param = Conversions.decimal_value_to_str(frequency) self._core.io.write(f'SOURce<HwInstance>:BB:ILS:LOCalizer:RLOBe:FREQuency {param}')