Source code for RsSmbv.Implementations.Source.Iq.Doherty.InputPy

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class InputPyCls: """InputPy commands group definition. 2 total commands, 0 Subgroups, 2 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("inputPy", core, parent)
[docs] def get_level(self) -> float: """SCPI: [SOURce<HW>]:IQ:DOHerty:INPut:LEVel \n Snippet: value: float = driver.source.iq.doherty.inputPy.get_level() \n No command help available \n :return: level: No help available """ response = self._core.io.query_str('SOURce<HwInstance>:IQ:DOHerty:INPut:LEVel?') return Conversions.str_to_float(response)
[docs] def get_pep(self) -> float: """SCPI: [SOURce<HW>]:IQ:DOHerty:INPut:PEP \n Snippet: value: float = driver.source.iq.doherty.inputPy.get_pep() \n No command help available \n :return: pep: No help available """ response = self._core.io.query_str('SOURce<HwInstance>:IQ:DOHerty:INPut:PEP?') return Conversions.str_to_float(response)