Source code for RsSmbv.Implementations.Source.Bb.Gnss.System.Beidou

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class BeidouCls: """Beidou commands group definition. 7 total commands, 1 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("beidou", core, parent) @property def signal(self): """signal commands group. 3 Sub-classes, 0 commands.""" if not hasattr(self, '_signal'): from .Signal import SignalCls self._signal = SignalCls(self._core, self._cmd_group) return self._signal
[docs] def get_state(self) -> bool: """SCPI: [SOURce<HW>]:BB:GNSS:SYSTem:BEIDou:[STATe] \n Snippet: value: bool = driver.source.bb.gnss.system.beidou.get_state() \n Defines if satellites from the selected GNSS system are included in the simulated satellites constellation. \n :return: state: 1| ON| 0| OFF Disabling a GNSS system deactivates all SVID and signals from this system. """ response = self._core.io.query_str('SOURce<HwInstance>:BB:GNSS:SYSTem:BEIDou:STATe?') return Conversions.str_to_bool(response)
[docs] def set_state(self, state: bool) -> None: """SCPI: [SOURce<HW>]:BB:GNSS:SYSTem:BEIDou:[STATe] \n Snippet: driver.source.bb.gnss.system.beidou.set_state(state = False) \n Defines if satellites from the selected GNSS system are included in the simulated satellites constellation. \n :param state: 1| ON| 0| OFF Disabling a GNSS system deactivates all SVID and signals from this system. """ param = Conversions.bool_to_str(state) self._core.io.write(f'SOURce<HwInstance>:BB:GNSS:SYSTem:BEIDou:STATe {param}')
def clone(self) -> 'BeidouCls': """Clones the group by creating new object from it and its whole existing subgroups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group""" new_group = BeidouCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group