Source code for RsSmw.Implementations.Source.Bb.Gnss.Svid.Xona.Power.Offset.All

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class AllCls: """All commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("all", core, parent)
[docs] def set(self, power_offset: float, satelliteSvid=repcap.SatelliteSvid.Default) -> None: """SCPI: [SOURce<HW>]:BB:GNSS:SVID<CH>:XONA:POWer:OFFSet:ALL \n Snippet: driver.source.bb.gnss.svid.xona.power.offset.all.set(power_offset = 1.0, satelliteSvid = repcap.SatelliteSvid.Default) \n No command help available \n :param power_offset: No help available :param satelliteSvid: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Svid') """ param = Conversions.decimal_value_to_str(power_offset) satelliteSvid_cmd_val = self._cmd_group.get_repcap_cmd_value(satelliteSvid, repcap.SatelliteSvid) self._core.io.write(f'SOURce<HwInstance>:BB:GNSS:SVID{satelliteSvid_cmd_val}:XONA:POWer:OFFSet:ALL {param}')