Source code for RsSmbv.Implementations.Source.Bb.Pramp.Trigger.Obaseband

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class ObasebandCls: """Obaseband commands group definition. 2 total commands, 0 Subgroups, 2 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("obaseband", core, parent)
[docs] def get_delay(self) -> float: """SCPI: [SOURce<HW>]:BB:PRAMp:TRIGger:OBASeband:DELay \n Snippet: value: float = driver.source.bb.pramp.trigger.obaseband.get_delay() \n No command help available \n :return: delay: No help available """ response = self._core.io.query_str('SOURce<HwInstance>:BB:PRAMp:TRIGger:OBASeband:DELay?') return Conversions.str_to_float(response)
[docs] def set_delay(self, delay: float) -> None: """SCPI: [SOURce<HW>]:BB:PRAMp:TRIGger:OBASeband:DELay \n Snippet: driver.source.bb.pramp.trigger.obaseband.set_delay(delay = 1.0) \n No command help available \n :param delay: No help available """ param = Conversions.decimal_value_to_str(delay) self._core.io.write(f'SOURce<HwInstance>:BB:PRAMp:TRIGger:OBASeband:DELay {param}')
[docs] def get_inhibit(self) -> int: """SCPI: [SOURce<HW>]:BB:PRAMp:TRIGger:OBASeband:INHibit \n Snippet: value: int = driver.source.bb.pramp.trigger.obaseband.get_inhibit() \n No command help available \n :return: inhibit: No help available """ response = self._core.io.query_str('SOURce<HwInstance>:BB:PRAMp:TRIGger:OBASeband:INHibit?') return Conversions.str_to_int(response)
[docs] def set_inhibit(self, inhibit: int) -> None: """SCPI: [SOURce<HW>]:BB:PRAMp:TRIGger:OBASeband:INHibit \n Snippet: driver.source.bb.pramp.trigger.obaseband.set_inhibit(inhibit = 1) \n No command help available \n :param inhibit: No help available """ param = Conversions.decimal_value_to_str(inhibit) self._core.io.write(f'SOURce<HwInstance>:BB:PRAMp:TRIGger:OBASeband:INHibit {param}')