Source code for RsSmw.Implementations.Source.Bb.Gnss.L5Band

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


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

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

[docs] def get_state(self) -> bool: """ ``[SOURce<HW>]:BB:GNSS:L5Band:[STATe]`` \n Snippet: ``value: bool = driver.source.bb.gnss.l5Band.get_state()`` \n Activates the RF band. """ response = self._core.io.query_str('SOURce<HwInstance>:BB:GNSS:L5Band:STATe?') return Conversions.str_to_bool(response)
[docs] def set_state(self, l_5_band_state: bool) -> None: """ ``[SOURce<HW>]:BB:GNSS:L5Band:[STATe]`` \n Snippet: ``driver.source.bb.gnss.l5Band.set_state(l_5_band_state = False)`` \n Activates the RF band. :param l_5_band_state: 1 | ON | 0| OFF """ param = Conversions.bool_to_str(l_5_band_state) self._core.io.write(f'SOURce<HwInstance>:BB:GNSS:L5Band:STATe {param}')