Source code for RsFswp.Implementations.InputPy.Gain.Value

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class ValueCls: """Value commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("value", core, parent)
[docs] def set(self, level: float) -> None: """SCPI: INPut:GAIN[:VALue] \n Snippet: driver.inputPy.gain.value.set(level = 1.0) \n This command selects the 'gain' if the preamplifier is activated (INP:GAIN:STAT ON, see method RsFswp.Applications. K30_NoiseFigure.InputPy.Gain.State.set) . The command requires the additional preamplifier hardware option. \n :param level: No help available """ param = Conversions.decimal_value_to_str(level) self._core.io.write(f'INPut:GAIN:VALue {param}')
[docs] def get(self) -> float: """SCPI: INPut:GAIN[:VALue] \n Snippet: value: float = driver.inputPy.gain.value.get() \n This command selects the 'gain' if the preamplifier is activated (INP:GAIN:STAT ON, see method RsFswp.Applications. K30_NoiseFigure.InputPy.Gain.State.set) . The command requires the additional preamplifier hardware option. \n :return: level: No help available""" response = self._core.io.query_str(f'INPut:GAIN:VALue?') return Conversions.str_to_float(response)