Source code for RsSmcv.Implementations.Source.Iq.Output

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class OutputCls: """Output commands group definition. 83 total commands, 2 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("output", core, parent) @property def digital(self): """digital commands group. 4 Sub-classes, 4 commands.""" if not hasattr(self, '_digital'): from .Digital import DigitalCls self._digital = DigitalCls(self._core, self._cmd_group) return self._digital @property def analog(self): """analog commands group. 4 Sub-classes, 3 commands.""" if not hasattr(self, '_analog'): from .Analog import AnalogCls self._analog = AnalogCls(self._core, self._cmd_group) return self._analog
[docs] def get_level(self) -> float: """SCPI: [SOURce<HW>]:IQ:OUTPut:LEVel \n Snippet: value: float = driver.source.iq.output.get_level() \n No command help available \n :return: level: No help available """ response = self._core.io.query_str('SOURce<HwInstance>:IQ:OUTPut:LEVel?') return Conversions.str_to_float(response)
[docs] def set_level(self, level: float) -> None: """SCPI: [SOURce<HW>]:IQ:OUTPut:LEVel \n Snippet: driver.source.iq.output.set_level(level = 1.0) \n No command help available \n :param level: No help available """ param = Conversions.decimal_value_to_str(level) self._core.io.write(f'SOURce<HwInstance>:IQ:OUTPut:LEVel {param}')
def clone(self) -> 'OutputCls': """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 = OutputCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group