Source code for RsSmw.Implementations.Source.Bb.Gnss.Receiver.V.Antenna.Count

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


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

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

[docs] def set(self, number_of_antenna: int, vehicle=repcap.Vehicle.Default) -> None: """ ``[SOURce<HW>]:BB:GNSS:RECeiver:[V<ST>]:ANTenna:COUNt`` \n Snippet: ``driver.source.bb.gnss.receiver.v.antenna.count.set(number_of_antenna = 1, vehicle = repcap.Vehicle.Default)`` \n Sets the number of simulated antennas. For more information, refer to the specifications document. :param number_of_antenna: integer Range: 1 to depends on the instrument :param vehicle: optional repeated capability selector. Default value: Nr1 (settable in the interface 'V') """ param = Conversions.decimal_value_to_str(number_of_antenna) vehicle_cmd_val = self._cmd_group.get_repcap_cmd_value(vehicle, repcap.Vehicle) self._core.io.write(f'SOURce<HwInstance>:BB:GNSS:RECeiver:V{vehicle_cmd_val}:ANTenna:COUNt {param}')
[docs] def get(self, vehicle=repcap.Vehicle.Default) -> int: """ ``[SOURce<HW>]:BB:GNSS:RECeiver:[V<ST>]:ANTenna:COUNt`` \n Snippet: ``value: int = driver.source.bb.gnss.receiver.v.antenna.count.get(vehicle = repcap.Vehicle.Default)`` \n Sets the number of simulated antennas. For more information, refer to the specifications document. :param vehicle: optional repeated capability selector. Default value: Nr1 (settable in the interface 'V') :return: number_of_antenna: integer Range: 1 to depends on the instrument """ vehicle_cmd_val = self._cmd_group.get_repcap_cmd_value(vehicle, repcap.Vehicle) response = self._core.io.query_str(f'SOURce<HwInstance>:BB:GNSS:RECeiver:V{vehicle_cmd_val}:ANTenna:COUNt?') return Conversions.str_to_int(response)