from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class ValueCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("value", core, parent)
[docs]
def set(self, gain: float) -> None:
"""
``INPut:GAIN[:VALue]`` \n
Snippet: ``driver.applications.k60Transient.inputPy.gain.value.set(gain = 1.0)`` \n
Selects the 'gain' if the preamplifier is activated (INP:GAIN:STAT ON,
see method ``RsFsw.applications.k10Xlte.inputPy.gain.state.set()`` ) . The command requires the additional preamplifier
hardware option.
:param gain: For all FSW models except for FSW85, the following settings are available: 15 dB and 30 dB All other values are rounded to the nearest of these two. 30 dB For older FSW43/FSW50/FSW67 models, the input signal is always ampilfied by about 30 dB when the preamplifier is active. For FSW85 models, no preamplifier is available. Unit: DB
"""
param = Conversions.decimal_value_to_str(gain)
self._core.io.write(f'INPut:GAIN:VALue {param}')
[docs]
def get(self) -> float:
"""
``INPut:GAIN[:VALue]`` \n
Snippet: ``value: float = driver.applications.k60Transient.inputPy.gain.value.get()`` \n
Selects the 'gain' if the preamplifier is activated (INP:GAIN:STAT ON,
see method ``RsFsw.applications.k10Xlte.inputPy.gain.state.set()`` ) . The command requires the additional preamplifier
hardware option.
:return: gain: For all FSW models except for FSW85, the following settings are available: 15 dB and 30 dB All other values are rounded to the nearest of these two. 30 dB For older FSW43/FSW50/FSW67 models, the input signal is always ampilfied by about 30 dB when the preamplifier is active. For FSW85 models, no preamplifier is available. Unit: DB
"""
response = self._core.io.query_str(f'INPut:GAIN:VALue?')
return Conversions.str_to_float(response)